(args)
| 439 | } |
| 440 | |
| 441 | async function getRuntimeReport(args) { |
| 442 | const report = buildBaseRuntimeReport() |
| 443 | |
| 444 | if (!args.commands) { |
| 445 | return report |
| 446 | } |
| 447 | |
| 448 | return { |
| 449 | ...report, |
| 450 | commandDiagnostics: await getCommandDiagnosticsReport(), |
| 451 | } |
| 452 | } |
| 453 | |
| 454 | function renderTextReport(report) { |
| 455 | const lines = [] |
no test coverage detected