You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
458 B
18 lines
458 B
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
// setupNodeEvents can be defined in either
|
|
// the e2e or component configuration
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
on('before:browser:launch', (browser = {}, launchOptions) => {
|
|
/* ... */
|
|
})
|
|
},
|
|
supportFile: false,
|
|
},
|
|
screenshotsFolder: "tmp/cypress_screenshots",
|
|
videosFolder: "tmp/cypress_videos",
|
|
trashAssetsBeforeRuns: false
|
|
})
|