()
| 297 | |
| 298 | // Pull with a sync iterable source (not async) |
| 299 | async function testPullWithSyncSource() { |
| 300 | function* gen() { |
| 301 | yield new TextEncoder().encode('sync-source'); |
| 302 | } |
| 303 | const data = await text(pull(gen())); |
| 304 | assert.strictEqual(data, 'sync-source'); |
| 305 | } |
| 306 | |
| 307 | // Pull transform yielding strings |
| 308 | async function testPullTransformYieldsStrings() { |
no test coverage detected