mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
956 B
35 lines
956 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
const initHooks = require('./init-hooks');
|
|
const verifyGraph = require('./verify-graph');
|
|
const TIMEOUT = 1;
|
|
|
|
const hooks = initHooks();
|
|
hooks.enable();
|
|
|
|
setTimeout(common.mustCall(ontimeout), TIMEOUT);
|
|
function ontimeout() {
|
|
setTimeout(onsecondTimeout, TIMEOUT + 1);
|
|
}
|
|
|
|
function onsecondTimeout() {
|
|
setTimeout(onthirdTimeout, TIMEOUT + 2);
|
|
}
|
|
|
|
function onthirdTimeout() {}
|
|
|
|
process.on('exit', onexit);
|
|
|
|
function onexit() {
|
|
hooks.disable();
|
|
verifyGraph(
|
|
hooks,
|
|
[ { type: 'Timeout', id: 'timeout:1', triggerAsyncId: null },
|
|
{ type: 'TIMERWRAP', id: 'timer:1', triggerAsyncId: null },
|
|
{ type: 'Timeout', id: 'timeout:2', triggerAsyncId: 'timeout:1' },
|
|
{ type: 'TIMERWRAP', id: 'timer:2', triggerAsyncId: 'timeout:1' },
|
|
{ type: 'Timeout', id: 'timeout:3', triggerAsyncId: 'timeout:2' },
|
|
{ type: 'TIMERWRAP', id: 'timer:3', triggerAsyncId: 'timeout:2' } ]
|
|
);
|
|
}
|
|
|