mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-09 00:04:10 +00:00
11 lines
175 B
TypeScript
11 lines
175 B
TypeScript
import { defineConfig } from 'cypress'
|
|
|
|
export default defineConfig({
|
|
env: {
|
|
baseUrl: 'http://localhost:8000',
|
|
},
|
|
e2e: {
|
|
setupNodeEvents(on, config) {},
|
|
},
|
|
})
|