Skip to content

Commit

Permalink
feat(saucelabs): Add Sauce Labs HTTPS Support (angular#4071)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinMarkVI authored and igniteram committed Feb 21, 2017
1 parent 98cefa4 commit 83ec910
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/driverProviders/sauce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ export class Sauce extends DriverProvider {
this.config_.capabilities['username'] = this.config_.sauceUser;
this.config_.capabilities['accessKey'] = this.config_.sauceKey;
this.config_.capabilities['build'] = this.config_.sauceBuild;
let auth = 'http://' + this.config_.sauceUser + ':' + this.config_.sauceKey + '@';
let auth = 'https://' + this.config_.sauceUser + ':' + this.config_.sauceKey + '@';
this.config_.seleniumAddress =
auth + (this.config_.sauceSeleniumAddress ? this.config_.sauceSeleniumAddress :
'ondemand.saucelabs.com:80/wd/hub');
'ondemand.saucelabs.com:443/wd/hub');

// Append filename to capabilities.name so that it's easier to identify
// tests.
Expand Down

0 comments on commit 83ec910

Please sign in to comment.