From 9941f7786d8aabb8e9c6e1e6843fdae21738a596 Mon Sep 17 00:00:00 2001 From: Carlos Martins Date: Thu, 7 Mar 2024 21:51:07 -0500 Subject: [PATCH] fix ts error --- tests/e2e/utils/installApp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/utils/installApp.ts b/tests/e2e/utils/installApp.ts index b443344e6f02..dc6a9d64053f 100644 --- a/tests/e2e/utils/installApp.ts +++ b/tests/e2e/utils/installApp.ts @@ -17,7 +17,7 @@ export default function (packageName: string, path: string, platform = 'android' execAsync(`adb uninstall ${packageName}`) .catch((error: ExecException) => { // Ignore errors - Logger.warn('Failed to uninstall app:', error); + Logger.warn('Failed to uninstall app:', error.message); }) // eslint-disable-next-line @typescript-eslint/no-misused-promises .finally(() => execAsync(`adb install ${path}`))