Skip to content

Commit

Permalink
add ; to tests (#1505)
Browse files Browse the repository at this point in the history
Signed-off-by: Riya Saxena <riysaxen@amazon.com>
  • Loading branch information
riysaxen-amzn authored Aug 5, 2024
1 parent cd227a6 commit 7b4cd75
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ describe('Test delete senders', () => {
force: true,
});
cy.wait(NOTIFICATIONS_DELAY);
cy.get('input[placeholder="delete"]').should('be.visible').type('delete')
cy.get('input[placeholder="delete"]').should('be.visible').type('delete');
cy.wait(NOTIFICATIONS_DELAY);
cy.get('[data-test-subj="delete-sender-modal-delete-button"]').click();
cy.contains('successfully deleted.').should('exist');
Expand All @@ -178,7 +178,7 @@ describe('Test delete senders', () => {
force: true,
});
cy.wait(NOTIFICATIONS_DELAY);
cy.get('input[placeholder="delete"]').should('be.visible').type('delete')
cy.get('input[placeholder="delete"]').should('be.visible').type('delete');
cy.wait(NOTIFICATIONS_DELAY);
cy.get('[data-test-subj="delete-sender-modal-delete-button"]').click();
cy.contains('successfully deleted.').should('exist');
Expand Down

0 comments on commit 7b4cd75

Please sign in to comment.