Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Riya Saxena <[email protected]>
  • Loading branch information
riysaxen-amzn committed Sep 11, 2024
1 parent 6390d0d commit 2347aa5
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -400,10 +400,12 @@ describe('Alerts', () => {
// Filter the table to show only "Acknowledged" alerts
cy.wait(2000);
cy.get('[data-text="Status"]').should('be.visible').click({ force: true });
cy.get('[class="euiFilterSelect__items"]').should('be.visible').within(() => {
cy.contains('Active').click({ force: true });
cy.contains('Acknowledged').click({ force: true });
});
cy.get('[class="euiFilterSelect__items"]')
.should('be.visible')
.within(() => {
cy.contains('Active').click({ force: true });
cy.contains('Acknowledged').click({ force: true });
});

// Wait for filter to apply
cy.wait(2000);
Expand Down

0 comments on commit 2347aa5

Please sign in to comment.