Skip to content

Commit 7c23308

Browse files
copilot
1 parent 0af152a commit 7c23308

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

test/functional/webdriveragent-e2e-specs.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,6 @@ describe('WebDriverAgent', function () {
9595
this.timeout(35 * 1000);
9696

9797
const agent = new WebDriverAgent(getStartOpts(device));
98-
99-
if (!agent.xcodebuild) {
100-
throw new Error('xcodebuild is null');
101-
}
10298
(agent.xcodebuild as any).createSubProcess = async function () {
10399
const args = [
104100
'-workspace',

test/unit/webdriveragent-specs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ describe('setupCaching()', function () {
281281
});
282282

283283
it('should not call uninstall since bundle id is equal to updatedWDABundleId capability', async function () {
284-
wda = new WebDriverAgent({ ...fakeConstructorArgs, updatedWDABundleId: 'com.example.WebDriverAgent' });
284+
wda = new WebDriverAgent({ ...fakeConstructorArgs, updatedWDABundleId: 'com.example.WebDriverAgent' });
285285
wdaStub = sinon.stub(wda, 'getStatus');
286286
wdaStubUninstall = sinon.stub(wda as any, 'uninstall');
287287

0 commit comments

Comments
 (0)