Lines Matching +full:require +full:- +full:common +full:- +full:first
3 const common = require('../common'); constant
4 const assert = require('assert');
5 const tick = require('../common/tick');
6 const initHooks = require('./init-hooks');
7 const { checkInvocations } = require('./hook-checks');
8 const TIMEOUT = common.platformTimeout(100);
13 // Install first timeout
14 setTimeout(common.mustCall(ontimeout), TIMEOUT);
21 checkInvocations(t1, { init: 1 }, 't1: when first timer installed');
26 checkInvocations(t1, { init: 1, before: 1 }, 't1: when first timer fired');
37 timer = setTimeout(common.mustNotCall(), 2 ** 31 - 1);