()
| 127 | |
| 128 | function testPullSyncSABChunks() { |
| 129 | function* gen() { |
| 130 | const sab = new SharedArrayBuffer(2); |
| 131 | new Uint8Array(sab).set([1, 2]); |
| 132 | yield [new Uint8Array(sab)]; |
| 133 | } |
| 134 | const batches = []; |
| 135 | for (const batch of pullSync(gen())) { |
| 136 | batches.push(batch); |
no test coverage detected