(shouldAbort: boolean)
| 334 | } |
| 335 | |
| 336 | async function callerWithUnwrap(shouldAbort: boolean): Promise<string> { |
| 337 | return unwrapPromptResult(await mockLlmCall(shouldAbort)) |
| 338 | } |
| 339 | |
| 340 | async function outerCaller(shouldAbort: boolean): Promise<{ result: string; wasAborted: boolean }> { |
| 341 | try { |
no test coverage detected