mirror of
https://github.com/nodejs/node.git
synced 2025-05-08 21:49:48 +00:00

PR-URL: https://github.com/nodejs/node/pull/14162 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
24 lines
768 B
JavaScript
24 lines
768 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const async_hooks = require('async_hooks');
|
|
|
|
const initCalls = [];
|
|
|
|
async_hooks.createHook({
|
|
init: common.mustCall((id, type, triggerId, resource) => {
|
|
assert.strictEqual(type, 'PROMISE');
|
|
initCalls.push({ id, triggerId, resource });
|
|
}, 2)
|
|
}).enable();
|
|
|
|
const a = Promise.resolve(42);
|
|
const b = a.then(common.mustCall());
|
|
|
|
assert.strictEqual(initCalls[0].triggerId, 1);
|
|
assert.strictEqual(initCalls[0].resource.parentId, undefined);
|
|
assert.strictEqual(initCalls[0].resource.promise, a);
|
|
assert.strictEqual(initCalls[1].triggerId, initCalls[0].id);
|
|
assert.strictEqual(initCalls[1].resource.parentId, initCalls[0].id);
|
|
assert.strictEqual(initCalls[1].resource.promise, b);
|