mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
277f343689
This commit addresses several lines that are unnecessarily longer than the 80 character limit. The only reason they pass linting, I believe, is because they contain URLs. PR-URL: https://github.com/nodejs/node/pull/31014 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
common.disableCrashOnUnhandledRejection();
|
|
|
|
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.', 'DEP0018'];
|
|
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(). To terminate the ' +
|
|
'node process on unhandled promise rejection, ' +
|
|
'use the CLI flag `--unhandled-rejections=strict` (see ' +
|
|
'https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). ' +
|
|
'(rejection id: 1)'];
|
|
|
|
common.expectWarning({
|
|
DeprecationWarning: expectedDeprecationWarning,
|
|
UnhandledPromiseRejectionWarning: [
|
|
expectedValueWarning,
|
|
expectedPromiseWarning
|
|
],
|
|
});
|
|
|
|
// Ensure this doesn't crash
|
|
Promise.reject(Symbol());
|