mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-07 23:40:21 -05:00
3103442b92
Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Barthélémy Ledoux <bart@cypress.io>
13 lines
360 B
JavaScript
13 lines
360 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)
|
|
},
|
|
specPattern: 'cypress/e2e/**/*.test.js',
|
|
},
|
|
})
|