elm-pages-v3-beta/cypress.config.ts
2022-12-22 16:04:59 -08:00

14 lines
379 B
TypeScript

import { defineConfig } from "cypress";
export default defineConfig({
defaultCommandTimeout: 8000,
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
return require("./cypress/plugins/index.js")(on, config);
},
baseUrl: "http://localhost:1234",
},
});