()
| 25 | |
| 26 | async function testShareMultipleConsumers() { |
| 27 | async function* gen() { |
| 28 | yield [new TextEncoder().encode('chunk1')]; |
| 29 | yield [new TextEncoder().encode('chunk2')]; |
| 30 | yield [new TextEncoder().encode('chunk3')]; |
| 31 | } |
| 32 | |
| 33 | const shared = share(gen(), { highWaterMark: 16 }); |
| 34 |
no test coverage detected