mirror of
https://github.com/datashard/snapshot.git
synced 2024-11-24 14:52:28 +00:00
15 lines
No EOL
256 B
JavaScript
15 lines
No EOL
256 B
JavaScript
const { defineConfig } = require("cypress");
|
|
|
|
module.exports = defineConfig({
|
|
|
|
snapshot: {
|
|
// updateSnapshots: true,
|
|
useFolders: true,
|
|
},
|
|
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
},
|
|
}); |