snapshot/cypress.config.js

16 lines
297 B
JavaScript
Raw Normal View History

2022-09-09 12:32:12 +00:00
const { defineConfig } = require("cypress");
module.exports = defineConfig({
snapshot: {
// snapshotPath: "cypress/snapshots/",
2024-01-29 18:08:06 +00:00
// SNAPSHOT_UPDATE: true,
useFolders: true,
2022-09-09 12:32:12 +00:00
},
2024-01-29 18:08:06 +00:00
2022-09-09 12:32:12 +00:00
e2e: {
setupNodeEvents(on, config) {
2024-01-29 18:08:06 +00:00
// implement node event listeners here
2022-09-09 12:32:12 +00:00
},
},
});