-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
Summary
CLAUDE.md states "80% coverage required" but the actual coverage threshold in jest.config.js is 85%.
Current State
CLAUDE.md (line 15):
pnpm test # All tests (80% coverage required)jest.config.js:
coverageThreshold: {
global: {
statements: 85,
branches: 83,
functions: 85,
lines: 85,
},
},Proposed Fix
Update CLAUDE.md to reflect the actual 85% coverage threshold:
pnpm test # All tests (85% coverage required)Related Issues
- docs: Update README test coverage from 80% to 85% #364: docs: Update README test coverage from 80% to 85%
- 📋 Daily Codebase Review - 2026-02-04 #366: Daily Codebase Review - 2026-02-04
Identified in: Daily Codebase Review - 2026-02-04
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation