()
| 214 | |
| 215 | async function testShareSourceError() { |
| 216 | async function* failingSource() { |
| 217 | yield [new TextEncoder().encode('a')]; |
| 218 | throw new Error('share source boom'); |
| 219 | } |
| 220 | const shared = share(failingSource()); |
| 221 | const c1 = shared.pull(); |
| 222 | const c2 = shared.pull(); |
no test coverage detected