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.
 
 
 
 
 
 

17 lines
395 B

'use strict';
const common = require('../common');
const async_hooks = require('async_hooks');
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());
}));