()
| 513 | } |
| 514 | |
| 515 | async function outerOperationBad(): Promise<string> { |
| 516 | try { |
| 517 | return await middleOperation() |
| 518 | } catch (error) { |
| 519 | // BAD: swallows abort error |
| 520 | return 'default value' |
| 521 | } |
| 522 | } |
| 523 | |
| 524 | async function outerOperationGood(): Promise<string> { |
| 525 | try { |
no test coverage detected