From 437c75bd4af0f8844ac4e32e43c3af81b91a81d3 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Tue, 2 Feb 2021 17:10:22 -0500 Subject: [PATCH] killall during teardown Signed-off-by: Sebastian Malton --- integration/helpers/utils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/integration/helpers/utils.ts b/integration/helpers/utils.ts index 7a612a14be..82db3fd40a 100644 --- a/integration/helpers/utils.ts +++ b/integration/helpers/utils.ts @@ -110,6 +110,7 @@ export async function tearDown(app: Application) { try { process.kill(pid, "SIGKILL"); + spawnSync("killall lens"); } catch (e) { console.error(e); }