(result: BatchStepResult)
| 18 | } as const satisfies Record<string, CliOutputFormatter>; |
| 19 | |
| 20 | function renderBatchStepLine(result: BatchStepResult): string { |
| 21 | const description = readCommandMessage(result.data) ?? result.command; |
| 22 | return `${result.step}. OK ${description} (${result.durationMs}ms)`; |
| 23 | } |
no test coverage detected