* Check if a file path is valid for inclusion
(path: string)
| 250 | * Check if a file path is valid for inclusion |
| 251 | */ |
| 252 | isValidFile(path: string): boolean { |
| 253 | return !isPathInExcludedFolder(path, this.excludedFolders); |
| 254 | } |
| 255 | |
| 256 | /** |
| 257 | * Get task info for a specific file path (just-in-time) |
no test coverage detected