feat: add Cypress end-to-end tests for login functionality and CI configuration

This commit is contained in:
2025-10-18 19:34:39 +02:00
parent 736d327050
commit 94ed954dc1
6 changed files with 1544 additions and 3 deletions

10
cypress.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'cypress'
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:3000',
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
})