0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00
nodejs/test/async-hooks/test-disable-in-init.js

24 lines
487 B
JavaScript
Raw Normal View History

'use strict';
const common = require('../common');
const async_hooks = require('async_hooks');
const fs = require('fs');
let nestedCall = false;
async_hooks.createHook({
init: common.mustCall(function() {
nestedHook.disable();
if (!nestedCall) {
nestedCall = true;
fs.access(__filename, common.mustCall());
}
}, 2)
}).enable();
const nestedHook = async_hooks.createHook({
init: common.mustCall(2)
}).enable();
fs.access(__filename, common.mustCall());