2017-06-09 21:27:02 +02:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
const async_hooks = require('async_hooks');
|
2017-11-22 16:08:16 +08:00
|
|
|
common.crashOnUnhandledRejection();
|
2017-06-09 21:27:02 +02:00
|
|
|
|
|
|
|
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());
|
|
|
|
}));
|