mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-22 21:51:25 +03:00
10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
defaultCommandTimeout: 20000,
|
|
e2e: {
|
|
setupNodeEvents(on, config) {},
|
|
baseUrl: "http://localhost:1234",
|
|
},
|
|
});
|