From c905457c0ed9451412cc1f05457252ff6c358a1a Mon Sep 17 00:00:00 2001 From: Christian Gunderman Date: Thu, 29 Jan 2026 12:11:46 -0800 Subject: [PATCH] Revert timeout to 120 seconds. --- packages/test-utils/src/test-rig.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/test-utils/src/test-rig.ts b/packages/test-utils/src/test-rig.ts index b1dcadb097..00d06c63f2 100644 --- a/packages/test-utils/src/test-rig.ts +++ b/packages/test-utils/src/test-rig.ts @@ -469,7 +469,7 @@ export class TestRig { } }); - const timeout = options.timeout ?? 300000; + const timeout = options.timeout ?? 120000; const promise = new Promise((resolve, reject) => { const timer = setTimeout(() => { child.kill('SIGKILL'); @@ -643,7 +643,7 @@ export class TestRig { } }); - const timeout = options.timeout ?? 300000; + const timeout = options.timeout ?? 120000; const promise = new Promise((resolve, reject) => { const timer = setTimeout(() => { child.kill('SIGKILL');