test: roll android chromium to 1190572 (#26807)
This commit is contained in:
parent
0bada4b31b
commit
cc30d72b0b
|
|
@ -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));
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue