Skip to content
Snippets Groups Projects
cypress.config.ts 214 B
Newer Older
Chloé JACOB's avatar
Chloé JACOB committed
import { defineConfig } from "cypress";

export default defineConfig({
  e2e: {
    baseUrl: 'http://127.0.0.1:5173/';
    setupNodeEvents(on, config) {
      // implement node event listeners here
    },
  },
});