Skip to content

Commit

Permalink
fix lint on main
Browse files Browse the repository at this point in the history
  • Loading branch information
hungvu193 committed Mar 8, 2024
1 parent 9132e05 commit 8e94e26
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 8e94e26

Please sign in to comment.