()
| 156 | |
| 157 | // array() with raw chunks |
| 158 | async function* rawSource3() { |
| 159 | yield encoder.encode('x'); |
| 160 | yield encoder.encode('y'); |
| 161 | } |
| 162 | const arr = await array(rawSource3()); |
| 163 | assert.strictEqual(arr.length, 2); |
| 164 | } |
no test coverage detected
searching dependent graphs…