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.
19 lines
732 B
19 lines
732 B
8 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
|
||
|
const expectedDeprecationWarning = 'Unhandled promise rejections are ' +
|
||
|
'deprecated. In the future, promise ' +
|
||
|
'rejections that are not handled will ' +
|
||
|
'terminate the Node.js process with a ' +
|
||
|
'non-zero exit code.';
|
||
|
const expectedPromiseWarning = 'Unhandled promise rejection (rejection id: ' +
|
||
|
'1): Symbol()';
|
||
|
|
||
|
common.expectWarning({
|
||
|
DeprecationWarning: expectedDeprecationWarning,
|
||
|
UnhandledPromiseRejectionWarning: expectedPromiseWarning,
|
||
|
});
|
||
|
|
||
|
// ensure this doesn't crash
|
||
|
Promise.reject(Symbol());
|