test: add initial Cypress e2e test infrastructure

Smoke tests for verifying Cypress runs, plus basic API tests
for health and sessions endpoints.
This commit is contained in:
2026-02-15 23:05:56 +01:00
parent 3feedd5698
commit 991080ae2b
6 changed files with 2333 additions and 0 deletions

5
cypress/support/e2e.js Normal file
View File

@@ -0,0 +1,5 @@
// Cypress E2E support file
// Add custom commands and global hooks here
// Prevent Cypress from failing on uncaught exceptions from the app
Cypress.on('uncaught:exception', () => false);