From f12b878fe5fb02ce13a01ed5d68de28a51a6645a Mon Sep 17 00:00:00 2001 From: Ben Francis Date: Wed, 20 Nov 2024 15:30:58 +0000 Subject: [PATCH] Try not logging in setTimeout, which may be preventing jest from exiting cleanly --- src/plugin/plugin.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/plugin/plugin.ts b/src/plugin/plugin.ts index 5c3c9e388..19b8b0f1c 100644 --- a/src/plugin/plugin.ts +++ b/src/plugin/plugin.ts @@ -916,7 +916,6 @@ export default class Plugin { kill(): void { if (this.process) { - console.log(`Killing ${this.pluginId} plugin.`); this.process.p?.kill(); } }