()
| 508 | } |
| 509 | |
| 510 | async function middleOperation(): Promise<string> { |
| 511 | const result = await innerOperation() |
| 512 | return unwrapPromptResult(result) |
| 513 | } |
| 514 | |
| 515 | async function outerOperationBad(): Promise<string> { |
| 516 | try { |
no test coverage detected