summaryrefslogtreecommitdiff
path: root/test/parallel/test-async-hooks-enable-before-promise-resolve.js
blob: c96c9e5dd966552634de26029d375a484ffb587f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
'use strict';
const common = require('../common');
const assert = require('assert');
const async_hooks = require('async_hooks');

// This test ensures that fast-path PromiseHook assigns async ids
// to already created promises when the native hook function is
// triggered on before event.

let initialAsyncId;
const promise = new Promise((resolve) => {
  setTimeout(() => {
    initialAsyncId = async_hooks.executionAsyncId();
    async_hooks.createHook({
      after: common.mustCall(() => {}, 2)
    }).enable();
    resolve();
  }, 0);
});

promise.then(common.mustCall(() => {
  const id = async_hooks.executionAsyncId();
  assert.notStrictEqual(id, initialAsyncId);
  assert.ok(id > 0);
}));