blob: e390c41a541f6d4b000b2c0a769a28df5e24b207 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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')(on, config)
},
baseUrl: 'http://localhost:61812',
},
})
|