mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
cf46746b8a
PR-URL: https://github.com/nodejs/node/pull/45549 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>
36 lines
755 B
JavaScript
36 lines
755 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const initHooks = require('./init-hooks');
|
|
const verifyGraph = require('./verify-graph');
|
|
const TIMEOUT = 1;
|
|
|
|
const hooks = initHooks();
|
|
hooks.enable();
|
|
|
|
let count = 0;
|
|
const iv1 = setInterval(common.mustCall(onfirstInterval, 3), TIMEOUT);
|
|
let iv2;
|
|
|
|
function onfirstInterval() {
|
|
if (++count === 3) {
|
|
clearInterval(iv1);
|
|
iv2 = setInterval(common.mustCall(onsecondInterval, 1), TIMEOUT + 1);
|
|
}
|
|
}
|
|
|
|
function onsecondInterval() {
|
|
clearInterval(iv2);
|
|
}
|
|
|
|
process.on('exit', onexit);
|
|
|
|
function onexit() {
|
|
hooks.disable();
|
|
verifyGraph(
|
|
hooks,
|
|
[ { type: 'Timeout', id: 'timeout:1', triggerAsyncId: null },
|
|
{ type: 'Timeout', id: 'timeout:2', triggerAsyncId: 'timeout:1' }],
|
|
);
|
|
}
|