()
| 72 | |
| 73 | // PullSync with empty source |
| 74 | function testPullSyncEmptySource() { |
| 75 | function* empty() {} |
| 76 | const result = bytesSync(pullSync(empty())); |
| 77 | assert.strictEqual(result.length, 0); |
| 78 | } |
| 79 | |
| 80 | // TapSync callback error propagates |
| 81 | function testTapSyncCallbackError() { |
no test coverage detected
searching dependent graphs…