From af04599bb55750092ab2c1275827edfd12d668f5 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Wed, 9 Jul 2025 06:56:08 -0700 Subject: [PATCH] Relaxed timeout on flaky test --- spec/core/integration/EnvSpec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/core/integration/EnvSpec.js b/spec/core/integration/EnvSpec.js index 63a58f4e..a887f96b 100644 --- a/spec/core/integration/EnvSpec.js +++ b/spec/core/integration/EnvSpec.js @@ -2697,7 +2697,7 @@ describe('Env integration', function() { setTimeout(function() { throw new Error('suite'); }, 1); - }, 10); + }, 50); env.it('spec', function() {}); }); @@ -2710,7 +2710,7 @@ describe('Env integration', function() { throw new Error('spec'); }, 1); }, - 10 + 50 ); });