jormungandr-bite/cypress.config.ts

13 lines
334 B
TypeScript
Raw Normal View History

2023-06-23 22:22:44 -06:00
import { defineConfig } from "cypress";
2022-06-10 21:07:28 -06:00
export default defineConfig({
2023-06-23 22:22:44 -06: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);
},
baseUrl: "http://localhost:61812",
},
});