1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-02-03 20:00:17 -06:00
paricafe/cypress.config.ts

13 lines
346 B
TypeScript
Raw Normal View History

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