(signal: AbortSignal)
| 614 | } |
| 615 | |
| 616 | async function step2(signal: AbortSignal): Promise<PromptResult<string>> { |
| 617 | callLog.push('step2') |
| 618 | if (signal.aborted) return promptAborted('step2 aborted') |
| 619 | return promptSuccess('step2 result') |
| 620 | } |
| 621 | |
| 622 | async function step3(signal: AbortSignal): Promise<PromptResult<string>> { |
| 623 | callLog.push('step3') |
no test coverage detected