()
| 146 | |
| 147 | // shareSync() accepts string source directly (normalized via fromSync()) |
| 148 | function testShareSyncStringSource() { |
| 149 | const shared = shareSync('hello-sync-share'); |
| 150 | const result = textSync(shared.pull()); |
| 151 | assert.strictEqual(result, 'hello-sync-share'); |
| 152 | } |
| 153 | |
| 154 | Promise.all([ |
| 155 | testShareSyncBasic(), |
no test coverage detected