mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 21:58:48 +02:00
console: do not emit error events
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>
This commit is contained in:
parent
0af41834f1
commit
f18e08d820
4 changed files with 117 additions and 5 deletions
17
test/parallel/test-console-async-write-error.js
Normal file
17
test/parallel/test-console-async-write-error.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
'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) => {
|
||||
process.nextTick(callback, new Error('foobar'));
|
||||
})
|
||||
});
|
||||
|
||||
const c = new Console(out, out, true);
|
||||
|
||||
assert.doesNotThrow(() => {
|
||||
c.log('abc');
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue