runtests-watch: Don't try to listen for SIGKILL (#54114)

This commit is contained in:
Petra Jaros
2023-05-03 18:07:55 -04:00
committed by GitHub
parent f9a7cbfe7b
commit 7c378dbab3

View File

@@ -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);