mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
31d9edc849
PR-URL: https://github.com/nodejs/node/pull/43685 Refs: https://github.com/nodejs/node/issues/42457 Refs: https://github.com/nodejs/node/pull/43648/files Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
11 lines
265 B
JavaScript
11 lines
265 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { PassThrough } = require('stream');
|
|
|
|
const pt = new PassThrough({ highWaterMark: 0 });
|
|
pt.on('drain', common.mustCall());
|
|
assert(!pt.write('hello1'));
|
|
pt.read();
|
|
pt.read();
|