mirror of https://gitee.com/openkylin/nodejs.git
21 lines
503 B
JavaScript
21 lines
503 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const async_hooks = require('async_hooks');
|
|
|
|
if (!common.isMainThread)
|
|
common.skip('Worker bootstrapping works differently -> different AsyncWraps');
|
|
|
|
const hook = async_hooks.createHook({
|
|
init: common.mustCall(2),
|
|
before: common.mustCall(1),
|
|
after: common.mustNotCall()
|
|
}).enable();
|
|
|
|
Promise.resolve(1).then(common.mustCall(() => {
|
|
hook.disable();
|
|
|
|
Promise.resolve(42).then(common.mustCall());
|
|
|
|
process.nextTick(common.mustCall());
|
|
}));
|