()
| 323 | }]; |
| 324 | } |
| 325 | export async function buildInstallationDiagnostics(): Promise<Diagnostic[]> { |
| 326 | const installWarnings = await checkInstall(); |
| 327 | return installWarnings.map(warning => warning.message); |
| 328 | } |
| 329 | export async function buildInstallationHealthDiagnostics(): Promise<Diagnostic[]> { |
| 330 | const diagnostic = await getDoctorDiagnostic(); |
| 331 | const items: Diagnostic[] = []; |
no test coverage detected