mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-03 13:30:26 -05:00
c7f63e1f29
* handle case of implicit index.js * fix test error message * fix test
12 lines
306 B
JavaScript
12 lines
306 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')(on, config)
|
|
},
|
|
},
|
|
})
|