CreatBotMainsail/cypress.config.ts
Stefan Dej a743776cd9
chore: update dependencies in package.json (#2168)
Signed-off-by: Stefan Dej <meteyou@gmail.com>
2025-04-08 21:20:24 +02:00

12 lines
280 B
TypeScript

import { defineConfig } from 'cypress'
import pluginConfig from './cypress/plugins/index.js'
export default defineConfig({
e2e: {
setupNodeEvents(on, config) {
return pluginConfig(on, config)
},
baseUrl: 'http://localhost:4173',
},
})