We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6cfe5c commit e485a8bCopy full SHA for e485a8b
1 file changed
lib/xcodebuild.ts
@@ -461,7 +461,7 @@ export class XcodeBuild {
461
}
462
463
const proxyTimeout = noSessionProxy.timeout;
464
- noSessionProxy.timeout = 1000;
+ (noSessionProxy as any).timeout = 1000;
465
try {
466
currentStatus = (await noSessionProxy.command('/status', 'GET')) as StringRecord;
467
if (currentStatus && currentStatus.ios && (currentStatus.ios as any).ip) {
@@ -472,7 +472,7 @@ export class XcodeBuild {
472
} catch (err: any) {
473
throw new Error(`Unable to connect to running WebDriverAgent: ${err.message}`);
474
} finally {
475
- noSessionProxy.timeout = proxyTimeout;
+ (noSessionProxy as any).timeout = proxyTimeout;
476
477
});
478
0 commit comments