From 794808b16904a59c67b7058a1d512627969fdc2e Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 04:31:26 +0000 Subject: [PATCH] test: isolate hook installer suite from unit-fast lane --- scripts/test-parallel.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/test-parallel.mjs b/scripts/test-parallel.mjs index e6c2cba75cd..1d7ec1bc386 100644 --- a/scripts/test-parallel.mjs +++ b/scripts/test-parallel.mjs @@ -33,6 +33,8 @@ const unitIsolatedFilesRaw = [ "src/auto-reply/reply.block-streaming.test.ts", // Integration test is process-heavy and can bottleneck unit-fast. "test/git-hooks-pre-commit.integration.test.ts", + // Archive extraction/fixture-heavy suite; keep off unit-fast critical path. + "src/hooks/install.test.ts", // Uses process-level unhandledRejection listeners; keep it off vmForks to avoid cross-file leakage. "src/imessage/monitor.shutdown.unhandled-rejection.test.ts", ];