Files
berlin/cypress.config.js
2026-06-23 15:44:53 +02:00

10 lines
207 B
JavaScript

import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
baseUrl: "http://localhost:5173",
specPattern: "cypress/e2e/**/*.cy.{js,jsx,ts,tsx}",
supportFile: false,
},
});