Skip to content

Commit

Permalink
remove wait
Browse files Browse the repository at this point in the history
Signed-off-by: tygao <[email protected]>
  • Loading branch information
raintygao committed Nov 13, 2024
1 parent 5bf332c commit e757ee6
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ if (
.contains('span', 'Add collaborators')
.click();

cy.wait(2000); // Intentional Wait
cy.contains('new_read_user');

cy.get('table')
.contains('td', 'new_read_user')
Expand Down Expand Up @@ -138,7 +138,7 @@ if (
.click();
cy.getElementByTestId('confirmModalConfirmButton').click();

cy.wait(2000); // Intentional Wait
cy.contains('read_user');

cy.get('table')
.contains('td', 'read_user')
Expand Down Expand Up @@ -189,7 +189,6 @@ if (

cy.getElementByTestId('confirm-delete-button').click();
cy.getElementByTestId('confirmModalConfirmButton').click();
cy.wait(2000); // Intentional Wait

const expectedWorkspace = {
name: workspaceName,
Expand Down

0 comments on commit e757ee6

Please sign in to comment.