1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 05:42:25 -05:00

fix(ext/node): increase tolerance for interval test (#26899)

Fixes tests added in https://github.com/denoland/deno/pull/26703 by
increasing tolerance due to noisy CI machines.
This commit is contained in:
Bartek Iwańczuk 2024-11-16 16:31:55 +00:00 committed by GitHub
parent a1bcdf17a5
commit f2cd5655c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -118,7 +118,7 @@ Deno.test({
expectedValue: 42,
intervalMs: 100,
iterations: 3,
tolerancePercent: 10,
tolerancePercent: 50,
};
const { setInterval } = timersPromises;