FoundKey/cypress.config.ts

13 lines
346 B
TypeScript
Raw Normal View History

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