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.
29 lines
884 B
29 lines
884 B
// Flags: --no-warnings
|
|
'use strict';
|
|
|
|
// Test that warnings are emitted when a Promise experiences an uncaught
|
|
// rejection, and then again if the rejection is handled later on.
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
var b = 0;
|
|
|
|
process.on('warning', common.mustCall((warning) => {
|
|
switch (b++) {
|
|
case 0:
|
|
assert.strictEqual(warning.name, 'UnhandledPromiseRejectionWarning');
|
|
assert(/Unhandled promise rejection/.test(warning.message));
|
|
break;
|
|
case 1:
|
|
assert.strictEqual(warning.name, 'DeprecationWarning');
|
|
break;
|
|
case 2:
|
|
assert.strictEqual(warning.name, 'PromiseRejectionHandledWarning');
|
|
assert(/Promise rejection was handled asynchronously/
|
|
.test(warning.message));
|
|
}
|
|
}, 3));
|
|
|
|
const p = Promise.reject('This was rejected');
|
|
setImmediate(common.mustCall(() => p.catch(() => {})));
|
|
|