mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
766 B
24 lines
766 B
8 years ago
|
'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);
|