docs: update test counts from ~1,642 to 1,716 (4 skipped, 0 failures)

Reflect current test run results across README, Overview, Technical Manual, and Testing Architecture docs.
This commit is contained in:
2026-08-22 00:34:49 +01:00
parent a991642157
commit 9eecb375cf
5 changed files with 289 additions and 7 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ Default logins (password: `password`):
```bash
cd backend && go build -o bin/backend ./main.go
cd frontend && npm ci && npm run build
cd backend && go test -tags "test,dev" -count=1 -parallel 8 ./... # ~1,642 tests passed (~13s)
cd backend && go test -tags "test,dev" -count=1 -parallel 8 ./... # 1,716 tests passed (4 skipped, ~13s)
cd backend && go test -tags "test,dev" -count=1 -race -timeout 480s ./... # race detector (all packages, ~4min)
cd backend && go test -tags "test,dev" -count=10 -parallel 8 ./... # thorough verification (~2-3min)
```