diff --git a/.gitignore b/.gitignore index 8e984ff0..9e2733d0 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,5 @@ coverage/ dist/ .nuxt .output +cypress/videos/* +cypress/fixtures/* diff --git a/cypress.config.ts b/cypress.config.ts new file mode 100644 index 00000000..a74994d1 --- /dev/null +++ b/cypress.config.ts @@ -0,0 +1,9 @@ +import { defineConfig } from 'cypress'; + +export default defineConfig({ + e2e: { + projectId: '8v9ivg', + baseUrl: 'http://localhost:3000', + }, + defaultCommandTimeout: 6000, +}); diff --git a/cypress.json b/cypress.json deleted file mode 100644 index ba49a5ec..00000000 --- a/cypress.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "projectId": "8v9ivg", - "baseUrl": "http://localhost:3000", - "defaultCommandTimeout": 6000 -}