summaryrefslogtreecommitdiff
path: root/test/parallel/test-timers-timeout-with-non-integer.js
blob: 96efc69e5096fd3a01e5757e29ada9ef441b34a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict';
const common = require('../common');

/**
 * This test is for https://github.com/nodejs/node/issues/24203
 */
let count = 50;
const time = 1.00000000000001;
const exec = common.mustCall(() => {
  if (--count === 0) {
    return;
  }
  setTimeout(exec, time);
}, count);
exec();