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.
30 lines
872 B
30 lines
872 B
9 years ago
|
// Flags: --no-warnings
|
||
|
// The flag suppresses stderr output but the warning event will still emit
|
||
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
const util = require('util');
|
||
|
|
||
|
process.on('warning', common.mustCall((warning) => {
|
||
|
assert(warning);
|
||
|
assert(/^(Warning|CustomWarning)/.test(warning.name));
|
||
|
assert(warning.message, 'A Warning');
|
||
|
}, 3));
|
||
|
|
||
|
process.emitWarning('A Warning');
|
||
|
process.emitWarning('A Warning', 'CustomWarning');
|
||
|
|
||
|
function CustomWarning() {
|
||
|
Error.call(this);
|
||
|
this.name = 'CustomWarning';
|
||
|
this.message = 'A Warning';
|
||
|
Error.captureStackTrace(this, CustomWarning);
|
||
|
}
|
||
|
util.inherits(CustomWarning, Error);
|
||
|
process.emitWarning(new CustomWarning());
|
||
|
|
||
|
// TypeError is thrown on invalid output
|
||
|
assert.throws(() => process.emitWarning(1), TypeError);
|
||
|
assert.throws(() => process.emitWarning({}), TypeError);
|