diff options
Diffstat (limited to '')
| -rw-r--r-- | cypress.config.ts | 7 | ||||
| -rw-r--r-- | cypress.json | 3 |
2 files changed, 7 insertions, 3 deletions
diff --git a/cypress.config.ts b/cypress.config.ts new file mode 100644 index 0000000000..3c8a8c1387 --- /dev/null +++ b/cypress.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from 'cypress'; + +export default defineConfig({ + e2e: { + baseUrl: 'http://localhost:61812', + }, +}); diff --git a/cypress.json b/cypress.json deleted file mode 100644 index e858e480b0..0000000000 --- a/cypress.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "baseUrl": "http://localhost:61812" -} |