From b146449ed521e274d4e3b28ca15fd2aaef7b368c Mon Sep 17 00:00:00 2001 From: 190n Date: Thu, 12 Sep 2024 16:23:33 -0800 Subject: [PATCH] Increase timeouts for shell-hang.test.ts (#13932) --- test/js/bun/shell/shell-hang.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/js/bun/shell/shell-hang.test.ts b/test/js/bun/shell/shell-hang.test.ts index 35d29d017f..3480dd81ac 100644 --- a/test/js/bun/shell/shell-hang.test.ts +++ b/test/js/bun/shell/shell-hang.test.ts @@ -22,7 +22,7 @@ describe("fail", () => { fixture => { expect([path.join(import.meta.dir, fixture)]).not.toRun(); }, - 500, + 700, ); }); @@ -32,6 +32,6 @@ describe("pass", () => { fixture => { expect([path.join(import.meta.dir, fixture)]).toRun(); }, - 500, + 700, ); });