Skip to content

Commit

Permalink
feat: allow global config of testName, tags
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtajina committed Jun 25, 2013
1 parent 727a068 commit 7fc3bfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ var SauceLabBrowser = function(id, args, sauceConnect, /* config.sauceLabs */ co
var start = function(url) {
var options = {
browserName: args.browserName,
tags: args.tags || [],
name: args.testName || 'Karma test'
tags: args.tags || config.tags || [],
name: args.testName || config.testName || 'Karma test'
};

driver = wd.remote('ondemand.saucelabs.com', 80, username, accessKey);
Expand Down

0 comments on commit 7fc3bfc

Please sign in to comment.