Skip to content

Commit b03ee7b

Browse files
committed
ci: use W3C-compliant Sauce Labs tunnelName and remove deprecated tunnelIdentifier
1 parent b74eef8 commit b03ee7b

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ jobs:
219219
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
220220
- name: Start Sauce Connect
221221
uses: saucelabs/sauce-connect-action@cb88b508c6f9ff4d84490093733315dbd55de022 # v3
222+
timeout-minutes: 10
222223
with:
223224
username: ${{ vars.SAUCE_USERNAME }}
224225
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}

tests/e2e/assets/protractor-saucelabs.conf.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,15 @@ exports.config = {
6464
// NOTE: https://saucelabs.com/products/platform-configurator can be used to determine configuration values
6565
multiCapabilities: capabilities.map((caps) => {
6666
const w3cCaps = {
67-
...caps,
67+
browserName: caps.browserName,
6868
browserVersion: caps.version,
6969
platformName: caps.platform,
7070
};
7171

7272
if (tunnelIdentifier) {
7373
return {
7474
...w3cCaps,
75-
tunnelIdentifier,
76-
tunnelName: tunnelIdentifier,
7775
'sauce:options': {
78-
tunnelIdentifier,
7976
tunnelName: tunnelIdentifier,
8077
},
8178
};

0 commit comments

Comments
 (0)