mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 09:52:21 +00:00

PR-URL: https://github.com/nodejs/node/pull/19836 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
25 lines
411 B
JavaScript
25 lines
411 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { Readable } = require('stream');
|
|
|
|
const rs = new Readable({
|
|
read() {}
|
|
});
|
|
|
|
let closed = false;
|
|
let errored = false;
|
|
|
|
rs.on('close', common.mustCall(() => {
|
|
closed = true;
|
|
assert(errored);
|
|
}));
|
|
|
|
rs.on('error', common.mustCall((err) => {
|
|
errored = true;
|
|
assert(!closed);
|
|
}));
|
|
|
|
rs.destroy(new Error('kaboom'));
|