Generate and analyze test coverage reports
Generates test coverage reports and identifies specific lines of code needing additional tests.
/plugin marketplace add https://www.claudepluginhub.com/api/plugins/smaiil-awesome-claude-agents/marketplace.json/plugin install smaiil-awesome-claude-agents@cpd-smaiil-awesome-claude-agentstesting/Generate test coverage report and identify uncovered code.
Detect test framework and coverage tool
Run tests with coverage enabled:
npx jest --coveragenpx vitest --coveragepytest --cov=. --cov-report=term-missinggo test -cover ./...dotnet test --collect:"XPlat Code Coverage"Parse coverage report
Identify files with low coverage
Suggest specific lines/functions needing tests
Coverage Summary
================
Statements: 85%
Branches: 72%
Functions: 90%
Lines: 84%
Files Needing Attention:
- src/utils/parser.ts (45%) - lines 23-45, 67-89
- src/api/handler.ts (62%) - lines 101-115