diff options
author | Raphael <mail@raphaelkabo.com> | 2024-05-26 21:21:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-26 21:21:16 +0100 |
commit | d728068526f319b4b4abbdeec29da568d6892ec8 (patch) | |
tree | 8a2d887367776ec0dc396524251022a02e8569ce /cypress/support/commands.ts | |
parent | 43296cd88b9ab6f3ba1d5f4de5f76f44b68de82a (diff) | |
parent | 80aa81a22ef00331942fe6d066e1f9d5e58df33f (diff) |
Merge pull request #153 from lowercasename/rk/url-validation
Fix URL validation
Diffstat (limited to 'cypress/support/commands.ts')
-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 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>; } } |