Initial commit

This commit is contained in:
Florian Sylvain
2024-03-25 12:06:42 +01:00
commit 9d33539a0b
29 changed files with 9464 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
supportFile: 'tests/e2e/support/e2e.{js,jsx,ts,tsx}',
specPattern: 'tests/e2e/specs/**/*.cy.{js,jsx,ts,tsx}',
videosFolder: 'tests/e2e/videos',
screenshotsFolder: 'tests/e2e/screenshots',
baseUrl: 'http://localhost:5173',
// eslint-disable-next-line @typescript-eslint/no-unused-vars
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});