1
0

Adding Cypress

This commit is contained in:
2024-11-04 21:40:59 +01:00
parent 2b2d1bb6a2
commit 1a5a4f3ec9
7 changed files with 2215 additions and 1 deletions

12
cypress.config.js Normal file
View File

@@ -0,0 +1,12 @@
const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
specPattern: [
"tests/e2e/**/*.cy.{js,jsx}"
],
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});