blob: 244bf87407373389e8e7279eef6bebc7e7bf88b0 [file] [edit]
'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();