- Introduced coding standards for TypeScript and React in SKILL.md. - Added continuous learning skill with configuration and evaluation scripts. - Created detail layout guidelines for read-only pages. - Established form layout rules for data-entry forms. - Documented project guidelines for the frontend monorepo. - Implemented security review checklist for frontend/Electron applications. - Developed a verification loop skill for comprehensive session checks. This commit enhances the skill set available for developers, ensuring adherence to best practices and improving code quality.
598 B
598 B
Test Coverage
Analyze Vitest coverage and add missing tests:
-
Run
pnpm test(packages that support coverage:pnpm --filter <pkg> test -- --coveragewhen configured) -
Identify files below 80%
-
For each under-covered file:
- Unit tests for validators, transformers, utils, stores
- Testing Library tests for
@repo/uicomponents - Journey tests for critical
apps/webflows (mock data services)
-
Verify new tests pass
-
Show before/after coverage
Focus on:
- Happy path
- Error handling
- Edge cases (null, undefined, empty)
- Zod boundary conditions (
rangeLength)