(file: { uri: Uri, isUntitled?: boolean, languageId?: string })
| 86 | } |
| 87 | |
| 88 | export function isAnalyzableAndInWorkspace(file: { uri: Uri, isUntitled?: boolean, languageId?: string }): boolean { |
| 89 | return isAnalyzable(file) && isWithinWorkspace(fsPath(file.uri)); |
| 90 | } |
| 91 | |
| 92 | export function isTestFileOrFolder(path: string | undefined): boolean { |
| 93 | return !!path && (isTestFile(path) || isTestFolder(path)); |
no test coverage detected