From 510889d439a28182e65a10b19ed766456c6af570 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 04:34:48 +0000 Subject: [PATCH] test: isolate slack slash and telegram bootstrap suites --- scripts/test-parallel.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/test-parallel.mjs b/scripts/test-parallel.mjs index 1d7ec1bc386..4a91af4b8b6 100644 --- a/scripts/test-parallel.mjs +++ b/scripts/test-parallel.mjs @@ -35,6 +35,10 @@ const unitIsolatedFilesRaw = [ "test/git-hooks-pre-commit.integration.test.ts", // Archive extraction/fixture-heavy suite; keep off unit-fast critical path. "src/hooks/install.test.ts", + // Setup-heavy bot bootstrap suite. + "src/telegram/bot.create-telegram-bot.test.ts", + // Slack slash registration tests are setup-heavy and can bottleneck unit-fast. + "src/slack/monitor/slash.test.ts", // Uses process-level unhandledRejection listeners; keep it off vmForks to avoid cross-file leakage. "src/imessage/monitor.shutdown.unhandled-rejection.test.ts", ];