mirror of
https://github.com/datashard/snapshot.git
synced 2024-11-22 06:02:29 +00:00
14 lines
277 B
JavaScript
14 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);
|
||
|
},
|
||
|
},
|
||
|
});
|