2022-06-10 23:53:45 -07:00
|
|
|
import { defineConfig } from 'cypress'
|
2022-06-10 20:07:28 -07:00
|
|
|
|
|
|
|
export default defineConfig({
|
2022-06-10 23:53:45 -07:00
|
|
|
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',
|
|
|
|
},
|
|
|
|
})
|