mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
889 B
48 lines
889 B
8 years ago
|
'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');
|
||
|
});
|
||
|
}
|