()
| 173 | }]; |
| 174 | } |
| 175 | export async function buildInstallationDiagnostics(): Promise<Diagnostic[]> { |
| 176 | const installWarnings = await checkInstall(); |
| 177 | return installWarnings.map(warning => warning.message); |
| 178 | } |
| 179 | export async function buildInstallationHealthDiagnostics(): Promise<Diagnostic[]> { |
| 180 | const diagnostic = await getDoctorDiagnostic(); |
| 181 | const items: Diagnostic[] = []; |
no test coverage detected