HomeAutomation-Web/cypress.config.js
2024-11-04 21:40:59 +01:00

13 lines
251 B
JavaScript

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