Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ jobs:
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
- name: Start Sauce Connect
uses: saucelabs/sauce-connect-action@cb88b508c6f9ff4d84490093733315dbd55de022 # v3
timeout-minutes: 10
with:
username: ${{ vars.SAUCE_USERNAME }}
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}
Expand Down
10 changes: 4 additions & 6 deletions tests/e2e/assets/protractor-saucelabs.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,17 @@ exports.config = {

// NOTE: https://saucelabs.com/products/platform-configurator can be used to determine configuration values
multiCapabilities: capabilities.map((caps) => {
const { version, platform, ...rest } = caps;
const w3cCaps = {
...caps,
browserVersion: caps.version,
platformName: caps.platform,
...rest,
browserVersion: version,
platformName: platform,
};
Comment thread
alan-agius4 marked this conversation as resolved.
Comment thread
alan-agius4 marked this conversation as resolved.

if (tunnelIdentifier) {
return {
...w3cCaps,
tunnelIdentifier,
tunnelName: tunnelIdentifier,
'sauce:options': {
tunnelIdentifier,
tunnelName: tunnelIdentifier,
},
};
Expand Down
Loading