Problem
CONTRIBUTING.md line 26 reads:
npm test runs the full vitest suite (45+ files, 479+ cases at this writing).
Reality at master: 51 files, 666 cases. The counts have drifted on every PR that added a test, and the "at this writing" qualifier hasn't been keeping the contract live — recent PRs that grew the suite didn't touch this line.
Fix
Replace the hard-coded counts with tier names ("unit + api + integration tiers across tests/"). Same information density for a reader; stops rotting every time the suite grows.
Proudly Made in Nebraska. Go Big Red! 🌽 https://xkcd.com/2347/
Problem
CONTRIBUTING.mdline 26 reads:Reality at master: 51 files, 666 cases. The counts have drifted on every PR that added a test, and the "at this writing" qualifier hasn't been keeping the contract live — recent PRs that grew the suite didn't touch this line.
Fix
Replace the hard-coded counts with tier names ("unit + api + integration tiers across
tests/"). Same information density for a reader; stops rotting every time the suite grows.Proudly Made in Nebraska. Go Big Red! 🌽 https://xkcd.com/2347/