mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
6059cbedbd
PR-URL: https://github.com/nodejs/node/pull/45027 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
32 lines
657 B
JavaScript
32 lines
657 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { promiseHooks } = require('v8');
|
|
|
|
const expected = [];
|
|
|
|
function testHook(name) {
|
|
const hook = promiseHooks[name];
|
|
const error = new Error(`${name} error`);
|
|
|
|
const stop = hook(common.mustCall(() => {
|
|
stop();
|
|
throw error;
|
|
}));
|
|
|
|
expected.push(error);
|
|
}
|
|
|
|
process.on('uncaughtException', common.mustCall((received) => {
|
|
assert.strictEqual(received, expected.shift());
|
|
}, 4));
|
|
|
|
testHook('onInit');
|
|
testHook('onSettled');
|
|
testHook('onBefore');
|
|
testHook('onAfter');
|
|
|
|
const stop = promiseHooks.onInit(common.mustCall(2));
|
|
|
|
Promise.resolve().then(stop);
|