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}`))