snapshot/cypress.config.js
2024-03-28 10:44:10 +01:00

15 lines
No EOL
291 B
JavaScript

const { defineConfig } = require("cypress");
module.exports = defineConfig({
fixturesFolder: "cypress/fixtures",
snapshot: {
// updateSnapshots: true,
useFolders: true,
},
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});