Skip to content

Commit

Permalink
[SIEM] Fixes flyout flaky test (#68683)
Browse files Browse the repository at this point in the history
* fixes flaky test

* Update x-pack/plugins/security_solution/cypress/integration/timeline_flyout_button.spec.ts

Co-authored-by: patrykkopycinski <[email protected]>

Co-authored-by: patrykkopycinski <[email protected]>
  • Loading branch information
MadameSheema and patrykkopycinski authored Jun 10, 2020
1 parent 028c19e commit 3eced03
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,13 @@ describe('timeline flyout button', () => {
cy.get(TIMELINE_FLYOUT_HEADER).should('have.css', 'visibility', 'visible');
});

// FLAKY: https://github.com/elastic/kibana/issues/60369
it.skip('sets the flyout button background to euiColorSuccess with a 10% alpha channel when the user starts dragging a host, but is not hovering over the flyout button', () => {
it('sets the flyout button background to euiColorSuccess with a 20% alpha channel when the user starts dragging a host, but is not hovering over the flyout button', () => {
dragFirstHostToTimeline();

cy.get(TIMELINE_NOT_READY_TO_DROP_BUTTON).should(
'have.css',
'background',
'rgba(1, 125, 115, 0.1) none repeat scroll 0% 0% / auto padding-box border-box'
'rgba(1, 125, 115, 0.2) none repeat scroll 0% 0% / auto padding-box border-box'
);
});
});

0 comments on commit 3eced03

Please sign in to comment.