Skip to content

Commit

Permalink
test: Remove unnecessary await
Browse files Browse the repository at this point in the history
  • Loading branch information
dcalhoun committed Dec 6, 2024
1 parent 3504e25 commit 37f89a5
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,7 @@ const setupDriver = async () => {
} catch ( err ) {
// Ignore error here, Appium is probably already running (Appium Inspector has its own server for instance)
// eslint-disable-next-line no-console
await console.log(
'Could not start Appium server',
err.toString()
);
console.log( 'Could not start Appium server', err.toString() );
}
}

Expand Down

0 comments on commit 37f89a5

Please sign in to comment.