get_coverage_gaps
Identify source files unreachable from any test file via the import graph, revealing completely untested code and zero-coverage areas.
Instructions
Finds source files that are not reachable from any test file through the import graph — i.e. completely untested code. Use to answer: which parts of the codebase have zero test coverage?
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max uncovered files to return | |
| source_dirs | No | Restrict results to these directories (absolute or relative to project_root). Defaults to the entire project. | |
| project_root | Yes | Absolute path to the TypeScript project root (must contain tsconfig.json) |