elm-pages-v3-beta/cypress.config.ts

10 lines
195 B
TypeScript
Raw Normal View History

import { defineConfig } from "cypress";
2022-08-09 16:32:47 +03:00
export default defineConfig({
2023-01-08 23:01:00 +03:00
defaultCommandTimeout: 20000,
2022-08-09 16:32:47 +03:00
e2e: {
2023-01-25 03:15:13 +03:00
setupNodeEvents(on, config) {},
baseUrl: "http://localhost:1234",
2022-08-09 16:32:47 +03:00
},
});