(signal: AbortSignal)
| 620 | } |
| 621 | |
| 622 | async function step3(signal: AbortSignal): Promise<PromptResult<string>> { |
| 623 | callLog.push('step3') |
| 624 | if (signal.aborted) return promptAborted('step3 aborted') |
| 625 | return promptSuccess('step3 result') |
| 626 | } |
| 627 | |
| 628 | async function runSequentialSteps(signal: AbortSignal): Promise<PromptResult<string[]>> { |
| 629 | const results: string[] = [] |
no test coverage detected