test: roll android chromium to 1190572 (#26807)

This commit is contained in:
Max Schmitt 2023-08-31 18:08:27 +02:00 committed by GitHub
parent 0bada4b31b
commit cc30d72b0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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<void>(resolve => server.listen(proxyPort, resolve));

View file

@ -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"