()
| 504 | |
| 505 | describe('rethrow pattern in catch blocks', () => { |
| 506 | async function innerOperation(): Promise<PromptResult<string>> { |
| 507 | return promptAborted('Inner abort') |
| 508 | } |
| 509 | |
| 510 | async function middleOperation(): Promise<string> { |
| 511 | const result = await innerOperation() |
no test coverage detected