elm-pages-v3-beta/cypress.config.ts

14 lines
376 B
TypeScript
Raw Normal View History

2022-08-09 16:32:47 +03:00
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',
},
})