Find Untested Functions
find_untested_functionsScan source files to identify functions and methods lacking test coverage, helping you focus testing efforts on untested code.
Instructions
Scan source files for function/method declarations and identify those with no corresponding test file.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| test_dir | No | Directory containing test files. Defaults to same directory as source. | |
| extensions | No | File extensions to include, e.g. [".ts", ".js"]. Defaults to [".ts", ".tsx", ".js", ".jsx"]. | |
| source_dir | Yes | Directory containing source files to scan. |