(chunk)
| 293 | const decoder = new TextDecoder(); |
| 294 | await stream.pipeTo(new WritableStream({ |
| 295 | write(chunk) { |
| 296 | chunks.push(decoder.decode(chunk, { stream: true })); |
| 297 | } |
| 298 | })); |
| 299 | assert.strictEqual(chunks.join(''), 'ABC'); |
| 300 | })().then(common.mustCall()); |
no test coverage detected
searching dependent graphs…