mirror of
https://github.com/datashard/snapshot.git
synced 2024-11-21 21:52:28 +00:00
13 lines
277 B
JavaScript
13 lines
277 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);
|
|
},
|
|
},
|
|
});
|