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:
parent
a1bcdf17a5
commit
f2cd5655c6
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ Deno.test({
|
|||
expectedValue: 42,
|
||||
intervalMs: 100,
|
||||
iterations: 3,
|
||||
tolerancePercent: 10,
|
||||
tolerancePercent: 50,
|
||||
};
|
||||
|
||||
const { setInterval } = timersPromises;
|
||||
|
|
Loading…
Reference in a new issue