Relaxed timeout on flaky test

This commit is contained in:
Steve Gravrock
2025-07-09 06:56:08 -07:00
parent 21db6ec0e3
commit af04599bb5

View File

@@ -2697,7 +2697,7 @@ describe('Env integration', function() {
setTimeout(function() { setTimeout(function() {
throw new Error('suite'); throw new Error('suite');
}, 1); }, 1);
}, 10); }, 50);
env.it('spec', function() {}); env.it('spec', function() {});
}); });
@@ -2710,7 +2710,7 @@ describe('Env integration', function() {
throw new Error('spec'); throw new Error('spec');
}, 1); }, 1);
}, },
10 50
); );
}); });