Fixed and updated E2E test suite. Added user credential registration tests. Coverage for backend and frontend.

This commit is contained in:
2025-12-06 00:52:35 +00:00
parent 8937905c9c
commit df5c176bcd
13 changed files with 2052 additions and 73 deletions
+10
View File
@@ -37,6 +37,16 @@ This will:
2. Run all E2E tests against it
3. Clean up the server when done
### With Coverage
```bash
npm run test:coverage
```
Runs tests and collects coverage for both:
- **Python backend** (via `coverage.py`) - HTML report in `coverage-html/`
- **Frontend JavaScript** (via Chrome V8 coverage) - JSON data in `e2e/coverage-frontend/`
### Interactive Mode
```bash