snapshot/cypress.config.js
2022-09-09 14:32:12 +02:00

14 lines
278 B
JavaScript

const { defineConfig } = require("cypress");
const { functions } = require("./src/utils");
module.exports = defineConfig({
snapshot: {
snapshotPath: "cypress/snapshots/",
},
e2e: {
setupNodeEvents(on, config) {
functions.tasks(on, config);
},
},
});