Files
component-party/cypress.config.ts
2024-03-05 17:24:20 +01:00

17 lines
307 B
TypeScript

import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
baseUrl: "http://localhost:5173",
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
component: {
devServer: {
framework: "svelte",
bundler: "vite",
},
},
});