diff options
-rw-r--r-- | cypress/e2e/event.cy.ts | 2 | ||||
-rw-r--r-- | cypress/support/commands.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cypress/e2e/event.cy.ts b/cypress/e2e/event.cy.ts index d5366e2..eeaa629 100644 --- a/cypress/e2e/event.cy.ts +++ b/cypress/e2e/event.cy.ts @@ -217,7 +217,7 @@ describe("Events", () => { cy.createGroup({ eventGroupName: "Test Group", eventGroupDescription: "Test Group Description", - eventGroupURL: "testgroup", + eventGroupURL: "https://example.com", hostName: "Test Host", creatorEmail: "test@example.com", }); diff --git a/cypress/support/commands.ts b/cypress/support/commands.ts index eadcd20..6757255 100644 --- a/cypress/support/commands.ts +++ b/cypress/support/commands.ts @@ -46,7 +46,7 @@ declare namespace Cypress { hostName: string; creatorEmail: string; }, - isPublic: boolean, + isPublic?: boolean, ): Chainable<Subject>; } } |