summaryrefslogtreecommitdiff
path: root/test/parallel/test-async-hooks-disable-during-promise.js
blob: 6b9b53bd30f0f5466b803e0bc943424601289118 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'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());
}));