Skip to content

Commit

Permalink
fix ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
luacmartins committed Mar 8, 2024
1 parent e7d096c commit 9941f77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/utils/installApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`))
Expand Down

0 comments on commit 9941f77

Please sign in to comment.