()
| 412 | // ============================================================================= |
| 413 | |
| 414 | function testDrainableNull() { |
| 415 | const writable = new Writable({ write(chunk, enc, cb) { cb(); } }); |
| 416 | const writer = fromWritable(writable); |
| 417 | |
| 418 | writable.destroy(); |
| 419 | assert.strictEqual(ondrain(writer), null); |
| 420 | } |
| 421 | |
| 422 | // ============================================================================= |
| 423 | // Error propagation: write after end rejects |
no test coverage detected
searching dependent graphs…