Skip to content

Commit

Permalink
increase timeout for flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Kabo committed Dec 6, 2023
1 parent e25d5c8 commit d245247
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cypress/tests/e2e/e2e.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ describe('E2E with Okta', () => {
timeout: 30000,
}).click();
cy.visit('/email-prefs');
cy.get('input[type="checkbox"]').should('not.be.checked');
cy.get('input[type="checkbox"]', {
timeout: 30000,
}).should('not.be.checked');
});
});

Expand Down

0 comments on commit d245247

Please sign in to comment.