elm-pages-v3-beta/cypress.config.ts
2022-08-09 06:32:47 -07:00

14 lines
376 B
TypeScript

import { defineConfig } from 'cypress'
export default defineConfig({
defaultCommandTimeout: 4000,
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:1234',
},
})