From 8f108b039ffae445fc908828432b436699229d7e Mon Sep 17 00:00:00 2001 From: Taylor Mullen Date: Wed, 11 Feb 2026 16:50:57 -0800 Subject: [PATCH] fix(hooks): increase timeout to 60s for Windows reliability --- integration-tests/hooks-system.test.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/integration-tests/hooks-system.test.ts b/integration-tests/hooks-system.test.ts index 68a4929b3b..d6db26ee0d 100644 --- a/integration-tests/hooks-system.test.ts +++ b/integration-tests/hooks-system.test.ts @@ -546,7 +546,7 @@ console.log(JSON.stringify({ { type: 'command', command: nodeCmd, - timeout: 30000, + timeout: 60000, }, ], }, @@ -1793,12 +1793,12 @@ console.log(JSON.stringify({ { type: 'command', command: enabledCmd, - timeout: 30000, + timeout: 60000, }, { type: 'command', command: disabledCmd, - timeout: 30000, + timeout: 60000, }, ], }, @@ -1857,12 +1857,12 @@ console.log(JSON.stringify({ { type: 'command', command: activeCmd, - timeout: 30000, + timeout: 60000, }, { type: 'command', command: disabledCmd, - timeout: 30000, + timeout: 60000, }, ], },