iceshrimp-legacy/cypress.config.ts

13 lines
346 B
TypeScript
Raw Normal View History

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