mirror of
https://github.com/penxio/penx.git
synced 2026-04-19 03:03:06 -04:00
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
import { defineConfig } from 'cypress'
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:5173',
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
},
|
|
})
|