mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 07:59:32 +00:00

Fixes: https://github.com/nodejs/node/issues/831 Fixes: https://github.com/nodejs/node/issues/947 Ref: https://github.com/nodejs/node/pull/9470 PR-URL: https://github.com/nodejs/node/pull/9744 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
48 lines
889 B
JavaScript
48 lines
889 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const { Console } = require('console');
|
|
const { Writable } = require('stream');
|
|
const assert = require('assert');
|
|
|
|
{
|
|
const out = new Writable({
|
|
write: common.mustCall((chunk, enc, callback) => {
|
|
callback(new Error('foobar'));
|
|
})
|
|
});
|
|
|
|
const c = new Console(out, out, true);
|
|
|
|
assert.doesNotThrow(() => {
|
|
c.log('abc');
|
|
});
|
|
}
|
|
|
|
{
|
|
const out = new Writable({
|
|
write: common.mustCall((chunk, enc, callback) => {
|
|
throw new Error('foobar');
|
|
})
|
|
});
|
|
|
|
const c = new Console(out, out, true);
|
|
|
|
assert.doesNotThrow(() => {
|
|
c.log('abc');
|
|
});
|
|
}
|
|
|
|
{
|
|
const out = new Writable({
|
|
write: common.mustCall((chunk, enc, callback) => {
|
|
setImmediate(() => callback(new Error('foobar')));
|
|
})
|
|
});
|
|
|
|
const c = new Console(out, out, true);
|
|
|
|
assert.doesNotThrow(() => {
|
|
c.log('abc');
|
|
});
|
|
}
|