diff options
Diffstat (limited to 'cypress/support')
| -rw-r--r-- | cypress/support/commands.ts | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/cypress/support/commands.ts b/cypress/support/commands.ts index 6fc8768..7535103 100644 --- a/cypress/support/commands.ts +++ b/cypress/support/commands.ts @@ -63,7 +63,7 @@ Cypress.Commands.add("createGroup", (groupData) => {      cy.get("#newEventGroupForm").submit();      // Wait for the new page to load -    cy.url().should("not.include", "/new"); +    cy.url({ timeout: 10000 }).should("not.include", "/new");      // Get the new group ID from the URL      cy.url().then((url) => {  | 
