From 7c378dbab3ab590835c3adbd260f37c97fba1111 Mon Sep 17 00:00:00 2001 From: Petra Jaros Date: Wed, 3 May 2023 18:07:55 -0400 Subject: [PATCH] runtests-watch: Don't try to listen for SIGKILL (#54114) --- Herebyfile.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/Herebyfile.mjs b/Herebyfile.mjs index 9c58b68681b..883ba191f18 100644 --- a/Herebyfile.mjs +++ b/Herebyfile.mjs @@ -616,7 +616,6 @@ export const runTestsAndWatch = task({ }); process.on("SIGINT", endWatchMode); - process.on("SIGKILL", endWatchMode); process.on("beforeExit", endWatchMode); watchTestsEmitter.on("rebuild", onRebuild); testCaseWatcher.on("all", onChange);