9 lines
162 B
TypeScript
9 lines
162 B
TypeScript
import { defineConfig } from "cypress"
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
setupNodeEvents(on, config) {},
|
|
baseUrl: "http://localhost:3000/",
|
|
},
|
|
})
|