diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-10 17:34:50 +0100 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-10 17:34:50 +0100 |
commit | f2758d9af091b92be848c256408cddea01393b54 (patch) | |
tree | 9f5c215a2183d2835ecd5acdc42807dbe060b014 /cypress/e2e/event.cy.ts | |
parent | 61a0c53b7b82bc875c855358df2c81c91e7e5a94 (diff) |
Increase URL timeout to reduce Cypress flakiness
Diffstat (limited to 'cypress/e2e/event.cy.ts')
-rw-r--r-- | cypress/e2e/event.cy.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cypress/e2e/event.cy.ts b/cypress/e2e/event.cy.ts index 270ca0a..46e35fb 100644 --- a/cypress/e2e/event.cy.ts +++ b/cypress/e2e/event.cy.ts @@ -61,7 +61,7 @@ describe("Events", () => { cy.get("#newEventFormSubmit").click(); // Wait for the new page to load - cy.url().should("not.include", "/new"); + cy.url({ timeout: 10000 }).should("not.include", "/new"); // Get the new event ID from the URL cy.url().then((url) => { |