We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55c0903 commit f0106a6Copy full SHA for f0106a6
tests/framework/fixtures/FixtureUtils.ts
@@ -149,7 +149,17 @@ export async function enableDeviceTrafficProxyForMockServer(
149
150
const proxyHost = '127.0.0.1';
151
const proxyPort = FALLBACK_MOCKSERVER_PORT;
152
- const exclusionList = 'localhost,127.0.0.1,10.0.2.2';
+ const exclusionHosts = [
153
+ 'localhost',
154
+ '127.0.0.1',
155
+ '10.0.2.2',
156
+ 'bs-local.com',
157
+ // Android system connectivity probes should not affect mock validation.
158
+ 'connectivitycheck.gstatic.com',
159
+ 'play.googleapis.com',
160
+ 'www.google.com',
161
+ ];
162
+ const exclusionList = exclusionHosts.join(',');
163
164
await execAsync(
165
`adb ${deviceFlag} shell settings put global http_proxy ${proxyHost}:${proxyPort}`,
0 commit comments