1
0
Fork 1
mirror of https://example.com synced 2024-11-23 00:16:39 +09:00
firefish/cypress.config.ts

13 lines
334 B
TypeScript
Raw Normal View History

2023-06-24 13:22:44 +09:00
import { defineConfig } from "cypress";
2022-06-11 12:07:28 +09:00
export default defineConfig({
2023-06-24 13:22:44 +09: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",
},
});