mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-21 14:40:05 -05:00
e0e5a60ef6
* fix: prevent adding default supportFile on migration * Update unit tests Co-authored-by: Tim Griesser <tgriesser10@gmail.com>
12 lines
315 B
JavaScript
12 lines
315 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
// We've imported your old cypress plugins here.
|
|
// You may want to clean this up later by importing these.
|
|
setupNodeEvents (on, config) {
|
|
return require('./cypress/plugins/index.js')(on, config)
|
|
},
|
|
},
|
|
})
|