2017-06-09 21:27:02 +02:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
const async_hooks = require('async_hooks');
|
|
|
|
|
2017-11-22 16:28:14 +08:00
|
|
|
common.crashOnUnhandledRejection();
|
|
|
|
|
2017-06-09 21:27:02 +02:00
|
|
|
Promise.resolve(1).then(common.mustCall(() => {
|
|
|
|
async_hooks.createHook({
|
|
|
|
init: common.mustCall(),
|
|
|
|
before: common.mustCall(),
|
|
|
|
after: common.mustCall(2)
|
|
|
|
}).enable();
|
|
|
|
|
|
|
|
process.nextTick(common.mustCall());
|
|
|
|
}));
|