| 5 | // from support.js file - no file system access |
| 6 | |
| 7 | export interface CoverageObject { |
| 8 | [key: string]: { |
| 9 | path?: string |
| 10 | inputSourceMap?: { |
| 11 | sources: string[] |
| 12 | sourceRoot?: string |
| 13 | } |
| 14 | [key: string]: unknown |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | /** excludes files that shouldn't be in code coverage report */ |
| 19 | export function filterFilesFromCoverage( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…