Update test counts in README and CONTRIBUTING (199 backend, 129 frontend)

This commit is contained in:
Pier-Jean Malandrino 2026-04-05 10:25:26 +02:00
parent ee57b04f84
commit 2ca0d0a984
2 changed files with 4 additions and 4 deletions

View file

@ -67,11 +67,11 @@ npx prettier --write src/ # auto-format
## Running Tests
```bash
# Backend (99 tests)
# Backend (199 tests)
cd document-parser
pytest tests/ -v
# Frontend (81 tests)
# Frontend (129 tests)
cd frontend
npm run test:run
```

View file

@ -149,12 +149,12 @@ npm run dev
### Running Tests
```bash
# Backend (99 tests)
# Backend (199 tests)
cd document-parser
pip install pytest pytest-asyncio httpx
pytest tests/ -v
# Frontend (81 tests)
# Frontend (129 tests)
cd frontend
npm run test:run
```