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

14 lines
380 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: {
// 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);
2022-08-09 16:32:47 +03:00
},
baseUrl: "http://localhost:1234",
2022-08-09 16:32:47 +03:00
},
});