()
| 187 | } |
| 188 | |
| 189 | function testBytesSyncStringSource() { |
| 190 | const result = bytesSync('hello-sync'); |
| 191 | assert.strictEqual(new TextDecoder().decode(result), 'hello-sync'); |
| 192 | } |
| 193 | |
| 194 | async function testTextStringSource() { |
| 195 | const { text } = require('stream/iter'); |
no test coverage detected
searching dependent graphs…