summaryrefslogtreecommitdiff
path: root/test/parallel/test-promise-unhandled-silent.js
blob: c9ccc0118e064ce75e348d3d55790d96524ca1e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Flags: --unhandled-rejections=none
'use strict';

const common = require('../common');

common.disableCrashOnUnhandledRejection();

// Verify that ignoring unhandled rejection works fine and that no warning is
// logged.

new Promise(() => {
  throw new Error('One');
});

Promise.reject('test');

process.on('warning', common.mustNotCall('warning'));
process.on('uncaughtException', common.mustNotCall('uncaughtException'));
process.on('rejectionHandled', common.mustNotCall('rejectionHandled'));

process.on('unhandledRejection', common.mustCall(2));

setTimeout(common.mustCall(), 2);