Skip to content

Commit 5463b04

Browse files
Bump versions
1 parent 479a5d4 commit 5463b04

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

.github/workflows/functional-test.yml

+5-9
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,13 @@ jobs:
1313
matrix:
1414
test_targets:
1515
- HOST_OS: 'macos-15'
16-
XCODE_VERSION: '16.1.0'
17-
IOS_VERSION: '18.1'
16+
XCODE_VERSION: '16.2'
17+
IOS_VERSION: '18.2'
1818
IOS_MODEL: iPhone 16 Plus
19-
- HOST_OS: 'macos-14'
20-
XCODE_VERSION: '15.3'
21-
IOS_VERSION: '17.4'
19+
- HOST_OS: 'macos-15'
20+
XCODE_VERSION: '15.4'
21+
IOS_VERSION: '17.5'
2222
IOS_MODEL: iPhone 15 Plus
23-
- HOST_OS: 'macos-13'
24-
XCODE_VERSION: 14.3.1
25-
IOS_VERSION: '16.4'
26-
IOS_MODEL: iPhone 14 Plus
2723

2824
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
2925
runs-on: ${{matrix.test_targets.HOST_OS}}

test/unit/webdriveragent-specs.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ describe('launch', function () {
7171
await agent.launch('sessionId').should.eventually.eql({build: 'data'});
7272
agent.url.href.should.eql(override);
7373
agent.jwproxy.server.should.eql('mockurl');
74-
agent.jwproxy.port.should.eql('8100');
74+
agent.jwproxy.port.should.eql(8100);
7575
agent.jwproxy.base.should.eql('');
7676
agent.noSessionProxy.server.should.eql('mockurl');
77-
agent.noSessionProxy.port.should.eql('8100');
77+
agent.noSessionProxy.port.should.eql(8100);
7878
agent.noSessionProxy.base.should.eql('');
7979
wdaStub.reset();
8080
});
@@ -97,10 +97,10 @@ describe('use wda proxy url', function () {
9797
agent.url.hostname.should.eql('127.0.0.1');
9898
agent.url.path.should.eql('/aabbccdd');
9999
agent.jwproxy.server.should.eql('127.0.0.1');
100-
agent.jwproxy.port.should.eql('8100');
100+
agent.jwproxy.port.should.eql(8100);
101101
agent.jwproxy.base.should.eql('/aabbccdd');
102102
agent.noSessionProxy.server.should.eql('127.0.0.1');
103-
agent.noSessionProxy.port.should.eql('8100');
103+
agent.noSessionProxy.port.should.eql(8100);
104104
agent.noSessionProxy.base.should.eql('/aabbccdd');
105105
});
106106
});

0 commit comments

Comments
 (0)