mirror of
https://github.com/nodejs/node.git
synced 2025-05-11 06:49:53 +00:00

PR-URL: https://github.com/nodejs/node/pull/17158 Refs: https://github.com/nodejs/node/pull/16768 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com>
26 lines
947 B
JavaScript
26 lines
947 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
const expectedValueWarning = 'Symbol()';
|
|
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. ' +
|
|
'This error originated either by throwing ' +
|
|
'inside of an async function without a catch ' +
|
|
'block, or by rejecting a promise which was ' +
|
|
'not handled with .catch(). (rejection id: 1)';
|
|
|
|
common.expectWarning({
|
|
DeprecationWarning: expectedDeprecationWarning,
|
|
UnhandledPromiseRejectionWarning: [
|
|
expectedPromiseWarning,
|
|
expectedValueWarning
|
|
],
|
|
});
|
|
|
|
// ensure this doesn't crash
|
|
Promise.reject(Symbol());
|