1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

killall during teardown

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-02-02 17:10:22 -05:00
parent d3f8ebcf76
commit 437c75bd4a

View File

@ -110,6 +110,7 @@ export async function tearDown(app: Application) {
try { try {
process.kill(pid, "SIGKILL"); process.kill(pid, "SIGKILL");
spawnSync("killall lens");
} catch (e) { } catch (e) {
console.error(e); console.error(e);
} }