From 37f89a50bd757e072b7a6bfdabd6c6e62f3ccb3a Mon Sep 17 00:00:00 2001 From: David Calhoun Date: Fri, 6 Dec 2024 12:28:23 -0500 Subject: [PATCH] test: Remove unnecessary `await` --- .../react-native-editor/__device-tests__/helpers/utils.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/packages/react-native-editor/__device-tests__/helpers/utils.js b/packages/react-native-editor/__device-tests__/helpers/utils.js index c18ec0fb012ee7..f92d66c032b4f4 100644 --- a/packages/react-native-editor/__device-tests__/helpers/utils.js +++ b/packages/react-native-editor/__device-tests__/helpers/utils.js @@ -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() ); } }