mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-14 19:20:42 -06:00
12 lines
316 B
JavaScript
12 lines
316 B
JavaScript
import { defineConfig } from 'cypress'
|
|
|
|
export default 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').default(on, config)
|
|
},
|
|
},
|
|
})
|