%PDF- %PDF-
| Direktori : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/test/async-hooks/ |
| Current File : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/test/async-hooks/test-enable-in-init.js |
'use strict';
const common = require('../common');
const async_hooks = require('async_hooks');
const fs = require('fs');
const nestedHook = async_hooks.createHook({
init: common.mustNotCall(),
});
let nestedCall = false;
async_hooks.createHook({
init: common.mustCall(() => {
nestedHook.enable();
if (!nestedCall) {
nestedCall = true;
fs.access(__filename, common.mustCall());
}
}, 2),
}).enable();
fs.access(__filename, common.mustCall());