Why
The README advertises "72k lines of tests", but the actual total across all test files is approximately 12,300 lines β a 6x overcount that misrepresents the project to anyone reading it.
Current state
README.md line 16:
π§ͺ Comprehensive tests β 72k lines of tests covering data flow integration, component behavior via Testing Library, and reusable property factories for test data
Running find . -name "*.test.ts" -o -name "*.test.tsx" | xargs wc -l reports 12,300 total lines across all test files.
Ideal state
- The README states a test line count that matches the actual total reported by the repository's test files.
Starting points
README.md β line 16, the "Comprehensive tests" bullet
find . -name "*.test.ts" -o -name "*.test.tsx" | xargs wc -l β command to recount before updating
QA plan
- Run
find . -name "*.test.ts" -o -name "*.test.tsx" | xargs wc -l in the repo root β note the total line.
- Open
README.md line 16 β expect the stated count to match (within ~5%) what the command reported.
Done when
The test line count in README.md matches the actual line count of test files in the repository.
Why
The README advertises "72k lines of tests", but the actual total across all test files is approximately 12,300 lines β a 6x overcount that misrepresents the project to anyone reading it.
Current state
README.mdline 16:Running
find . -name "*.test.ts" -o -name "*.test.tsx" | xargs wc -lreports 12,300 total lines across all test files.Ideal state
Starting points
README.mdβ line 16, the "Comprehensive tests" bulletfind . -name "*.test.ts" -o -name "*.test.tsx" | xargs wc -lβ command to recount before updatingQA plan
find . -name "*.test.ts" -o -name "*.test.tsx" | xargs wc -lin the repo root β note thetotalline.README.mdline 16 β expect the stated count to match (within ~5%) what the command reported.Done when
The test line count in
README.mdmatches the actual line count of test files in the repository.