feat: add Berlin Clock e2e tests

This commit is contained in:
Loic Coenen
2026-06-23 15:34:55 +02:00
parent 0965f585d0
commit 5a6de57a91
12 changed files with 304 additions and 42 deletions

9
cypress.config.js Normal file
View File

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