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) {},
|
|
},
|
|
})
|