snapshot/cypress.config.js

15 lines
294 B
JavaScript
Raw Permalink Normal View History

2022-09-09 12:32:12 +00:00
const { defineConfig } = require("cypress");
module.exports = defineConfig({
// fixturesFolder: "cypress/fixtures",
2022-09-09 12:32:12 +00:00
snapshot: {
2024-01-31 18:49:52 +00:00
// updateSnapshots: true,
2024-01-29 18:08:06 +00:00
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
},
},
2024-01-31 18:49:52 +00:00
});