2017-06-09 21:27:02 +02:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
const async_hooks = require('async_hooks');
|
|
|
|
|
|
|
|
Promise.resolve(1).then(common.mustCall(() => {
|
|
|
|
async_hooks.createHook({
|
|
|
|
init: common.mustCall(),
|
2018-05-18 01:20:25 +02:00
|
|
|
before: common.mustCallAtLeast(),
|
|
|
|
after: common.mustCallAtLeast(2)
|
2017-06-09 21:27:02 +02:00
|
|
|
}).enable();
|
|
|
|
|
|
|
|
process.nextTick(common.mustCall());
|
|
|
|
}));
|