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

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

common.disableCrashOnUnhandledRejection();

// Verify that ignoring unhandled rejection works fine and that no warning is
// logged even though there is no unhandledRejection hook attached.

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

Promise.reject('test');

process.on('warning', common.mustNotCall('warning'));
process.on('uncaughtException', common.mustNotCall('uncaughtException'));
process.on('exit', assert.strictEqual.bind(null, 0));

setTimeout(common.mustCall(), 2);