Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
fix(drivers): prevent Sauce Labs login credentials from showing up in…
Browse files Browse the repository at this point in the history
… logs

Closes #754
  • Loading branch information
VincentStark authored and juliemr committed Apr 29, 2014
1 parent 9a01429 commit b5c18db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/driverProviders/sauce.dp.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ SauceDriverProvider.prototype.setupEnv = function() {
this.config_.sauceKey + '@ondemand.saucelabs.com:80/wd/hub';

util.puts('Using SauceLabs selenium server at ' +
this.config_.seleniumAddress);
this.config_.seleniumAddress.replace(/\/\/.+@/, '//'));
deferred.resolve();
return deferred.promise;
};
Expand Down

0 comments on commit b5c18db

Please sign in to comment.