We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5ad5a5 commit 15d1ee6Copy full SHA for 15d1ee6
cypress/integration/pages.spec.js
@@ -1,4 +1,11 @@
1
+const randomString = () => (Math.random() + 1).toString(36).substring(7)
2
+const randomPassword = () => randomString() + randomString()
3
+const randomEmail = () => randomString() + "@" + randomString() + ".com"
4
+
5
context("Ory Kratos pages", () => {
6
+ const email = randomEmail()
7
+ const password = randomPassword()
8
9
beforeEach(() => {
10
cy.clearCookies({ domain: null })
11
})
0 commit comments