1'use strict'; 2const common = require('../common'); 3 4/** 5 * This test is for https://github.com/nodejs/node/issues/24203 6 */ 7let count = 50; 8const time = 1.00000000000001; 9const exec = common.mustCall(() => { 10 if (--count === 0) { 11 return; 12 } 13 setTimeout(exec, time); 14}, count); 15exec(); 16