From b0d796c8d64227a5ec012c060bbbee7d9da27568 Mon Sep 17 00:00:00 2001 From: deepak1556 Date: Thu, 18 Nov 2021 15:39:24 +0900 Subject: [PATCH] temp(macOS): kill test instances in OSS --- scripts/test-integration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-integration.sh b/scripts/test-integration.sh index 2eb8ce50a7350..331505e9899ef 100755 --- a/scripts/test-integration.sh +++ b/scripts/test-integration.sh @@ -54,7 +54,7 @@ else fi if [ -z "$INTEGRATION_TEST_APP_NAME" ]; then - after_suite() { true; } + after_suite() { killall Electron || true; } else after_suite() { killall $INTEGRATION_TEST_APP_NAME || true; } fi