snapshot/cypress.config.js
2024-01-29 19:08:06 +01:00

15 lines
297 B
JavaScript

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