Skip to content

Commit

Permalink
Fixes saucelabs testname
Browse files Browse the repository at this point in the history
  • Loading branch information
jbalsas committed Nov 28, 2017
1 parent bbfee49 commit 4842f7a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions karma-saucelabs.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,9 @@ module.exports = function(config) {
if (!sauceLabsAccessKey) {
sauceLabsAccessKey = process.env.SAUCE_ACCESS_KEY_ENC;
if (sauceLabsAccessKey) {
sauceLabsAccessKey = new Buffer(
sauceLabsAccessKey,
'base64'
).toString('binary');
sauceLabsAccessKey = new Buffer(sauceLabsAccessKey, 'base64').toString(
'binary'
);
}
}

Expand Down Expand Up @@ -94,7 +93,7 @@ module.exports = function(config) {
recordScreenshots: false,
recordVideo: false,
startConnect: false,
testName: 'metal-drag-drop tests',
testName: 'metal.js tests',
tunnelIdentifier: process.env.TRAVIS_JOB_NUMBER,
username: process.env.SAUCE_USERNAME,
},
Expand Down

0 comments on commit 4842f7a

Please sign in to comment.