summaryrefslogtreecommitdiff
path: root/tests/unit_node/timers_test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-11-16 16:31:55 +0000
committerGitHub <noreply@github.com>2024-11-16 16:31:55 +0000
commitf2cd5655c6012202c634cad5b3c136006bf1f0bf (patch)
treeadbe4d4f67a28bed2a9d2e4561cd0ac5a57746e3 /tests/unit_node/timers_test.ts
parenta1bcdf17a53fb98c476aae9e205817c4a80a363d (diff)
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.
Diffstat (limited to 'tests/unit_node/timers_test.ts')
-rw-r--r--tests/unit_node/timers_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_node/timers_test.ts b/tests/unit_node/timers_test.ts
index c7dc30bbb..ddc6dc0d8 100644
--- a/tests/unit_node/timers_test.ts
+++ b/tests/unit_node/timers_test.ts
@@ -118,7 +118,7 @@ Deno.test({
expectedValue: 42,
intervalMs: 100,
iterations: 3,
- tolerancePercent: 10,
+ tolerancePercent: 50,
};
const { setInterval } = timersPromises;