mirror of
https://github.com/datashard/snapshot.git
synced 2024-12-04 02:37:35 +00:00
15 lines
No EOL
294 B
JavaScript
15 lines
No EOL
294 B
JavaScript
const { defineConfig } = require("cypress");
|
|
|
|
module.exports = defineConfig({
|
|
// fixturesFolder: "cypress/fixtures",
|
|
snapshot: {
|
|
// updateSnapshots: true,
|
|
useFolders: true,
|
|
},
|
|
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
},
|
|
}); |