()
| 99 | } |
| 100 | |
| 101 | function buildScenarioList(): string { |
| 102 | return SCENARIOS.map(s => ` ${s.padEnd(24)} ${getScenarioDescription(s)}`).join( |
| 103 | '\n', |
| 104 | ) |
| 105 | } |
| 106 | |
| 107 | function parseUtilization(raw: string): number | null { |
| 108 | const parsed = Number(raw) |
no test coverage detected