-
Notifications
You must be signed in to change notification settings - Fork 0
Coverage
Ali Sadeghi edited this page Jan 6, 2026
·
2 revisions
Generates test coverage reports for all feature modules.
Usage:
/coverage- Runs Kover coverage tool on all feature modules
- Generates HTML reports with line-by-line analysis
- Opens reports in browser
- Shows coverage percentages by module
- HTML coverage reports in
build/reports/kover/ - Coverage summary in terminal
- Line, branch, and instruction coverage metrics
Running coverage for all features...
✓ feature:login - 87% coverage
✓ feature:profile - 92% coverage
✓ feature:settings - 78% coverage
Overall coverage: 85%
Report: build/reports/kover/html/index.html
- Before merging features
- To identify untested code paths
- During code review
- To meet coverage requirements
Back to Commands