Files
echecsfrance/cypress.config.ts
T
2023-06-08 13:37:28 +02:00

11 lines
213 B
TypeScript

import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
baseUrl: "http://localhost:3000",
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});