elm-pages/examples/end-to-end/cypress.config.ts
2023-05-25 09:07:14 -07:00

10 lines
195 B
TypeScript

import { defineConfig } from "cypress";
export default defineConfig({
defaultCommandTimeout: 20000,
e2e: {
setupNodeEvents(on, config) {},
baseUrl: "http://localhost:1234",
},
});