From 2ca0d0a984d0914eecba04fd2004d3ee23c37d5e Mon Sep 17 00:00:00 2001 From: Pier-Jean Malandrino Date: Sun, 5 Apr 2026 10:25:26 +0200 Subject: [PATCH] Update test counts in README and CONTRIBUTING (199 backend, 129 frontend) --- CONTRIBUTING.md | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 50b4605..baef553 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 ``` diff --git a/README.md b/README.md index cee5b1f..c26a195 100644 --- a/README.md +++ b/README.md @@ -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 ```