()
| 198 | // normal completion. The cleanup error should propagate directly. |
| 199 | async function testMergeCleanupErrorOnly() { |
| 200 | async function* source() { |
| 201 | yield [new TextEncoder().encode('data')]; |
| 202 | } |
| 203 | |
| 204 | async function* failingReturnSource() { |
| 205 | try { |
no test coverage detected