()
| 192 | } |
| 193 | |
| 194 | async function testTextStringSource() { |
| 195 | const { text } = require('stream/iter'); |
| 196 | const result = await text('direct-string'); |
| 197 | assert.strictEqual(result, 'direct-string'); |
| 198 | } |
| 199 | |
| 200 | Promise.all([ |
| 201 | testBytesSyncBasic(), |
no test coverage detected