From f2cd5655c6012202c634cad5b3c136006bf1f0bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sat, 16 Nov 2024 16:31:55 +0000 Subject: [PATCH] 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. --- tests/unit_node/timers_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_node/timers_test.ts b/tests/unit_node/timers_test.ts index c7dc30bbb7..ddc6dc0d85 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;