mirror of
https://github.com/nodejs/node.git
synced 2025-08-17 14:48:58 +02:00

PR-URL: https://github.com/nodejs/node/pull/45548 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
22 lines
543 B
JavaScript
22 lines
543 B
JavaScript
'use strict';
|
|
|
|
const common = require('../../common');
|
|
const assert = require('assert');
|
|
const async_hooks = require('async_hooks');
|
|
const { runInCallbackScope } = require(`./build/${common.buildType}/binding`);
|
|
|
|
let insideHook = false;
|
|
async_hooks.createHook({
|
|
before: common.mustCall((id) => {
|
|
assert.strictEqual(id, 1000);
|
|
insideHook = true;
|
|
}),
|
|
after: common.mustCall((id) => {
|
|
assert.strictEqual(id, 1000);
|
|
insideHook = false;
|
|
}),
|
|
}).enable();
|
|
|
|
runInCallbackScope({}, 1000, 1000, () => {
|
|
assert(insideHook);
|
|
});
|