diff --git a/tests/android/android.spec.ts b/tests/android/android.spec.ts index f7ee55121b..7b78258f3f 100644 --- a/tests/android/android.spec.ts +++ b/tests/android/android.spec.ts @@ -39,7 +39,7 @@ test('should be able to use a custom port', async function({ playwright }) { ++countOfIncomingConnections; ++countOfConnections; socket.on('close', () => countOfConnections--); - const client = net.connect(5037); + const client = net.connect(5037, '127.0.0.1'); socket.pipe(client).pipe(socket); }); await new Promise(resolve => server.listen(proxyPort, resolve)); diff --git a/utils/avd_start.sh b/utils/avd_start.sh index c060b5e944..85788bbeb5 100755 --- a/utils/avd_start.sh +++ b/utils/avd_start.sh @@ -19,7 +19,7 @@ echo "Emulator started" echo "Installing Chromium WebView" # See here for the latest revision: https://storage.googleapis.com/chromium-browser-snapshots/Android/LAST_CHANGE -CHROMIUM_ANDROID_REVISION="1103927" +CHROMIUM_ANDROID_REVISION="1190572" WEBVIEW_TMP_DIR="$(mktemp -d)" WEBVIEW_TMP_FILE="$WEBVIEW_TMP_DIR/chrome-android-zip" curl -s -o "${WEBVIEW_TMP_FILE}" "https://storage.googleapis.com/chromium-browser-snapshots/Android/${CHROMIUM_ANDROID_REVISION}/chrome-android.zip"