(filePath: string, results: DiagnosticRequestResult[])
| 377 | } |
| 378 | |
| 379 | const hasCurrentFileDiagnostics = (filePath: string, results: DiagnosticRequestResult[]) => |
| 380 | results.some((result) => (result.byFile.get(filePath)?.length ?? 0) > 0) |
| 381 | |
| 382 | async function requestDiagnostics( |
| 383 | filePath: string, |
no test coverage detected