( filePath: string, additionalPatterns: string[] = [], )
| 70 | * Used for testing, calls the same methods as the other ignore checks |
| 71 | */ |
| 72 | export function shouldExclude( |
| 73 | filePath: string, |
| 74 | additionalPatterns: string[] = [], |
| 75 | ): boolean { |
| 76 | return buildIgnoreChecker(additionalPatterns).ignores(filePath); |
| 77 | } |
| 78 | |
| 79 | export function getAllFiles( |
| 80 | dirPath: string, |
no test coverage detected
searching dependent graphs…