test: deflake test/pummel/test-timers.js

PR-URL: https://github.com/nodejs/node/pull/55098
Fixes: https://github.com/nodejs/node/issues/55092
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
This commit is contained in:
jakecastelli 2024-09-27 15:46:20 +09:30 committed by GitHub
parent 668e523392
commit 66a2cb210a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,7 +36,7 @@ const WINDOW = 200; // Why does this need to be so big?
assert.ok(diff > 0);
console.error(`diff: ${diff}`);
assert.ok(1000 <= diff && diff < 1000 + WINDOW);
assert.ok(Math.abs(diff - 1000) < WINDOW);
}), 1000);
}
@ -61,7 +61,7 @@ const WINDOW = 200; // Why does this need to be so big?
const t = interval_count * 1000;
assert.ok(t <= diff && diff < t + (WINDOW * interval_count));
assert.ok(Math.abs(diff - t) < WINDOW * interval_count);
assert.ok(interval_count <= 3, `interval_count: ${interval_count}`);
if (interval_count === 3)