()
| 15 | // ============================================================================= |
| 16 | |
| 17 | async function testShareSyncBasic() { |
| 18 | const shared = shareSync(fromSync('sync shared')); |
| 19 | |
| 20 | const consumer = shared.pull(); |
| 21 | const data = textSync(consumer); |
| 22 | assert.strictEqual(data, 'sync shared'); |
| 23 | } |
| 24 | |
| 25 | async function testShareSyncMultipleConsumers() { |
| 26 | const enc = new TextEncoder(); |
no test coverage detected