Skip to content

Commit

Permalink
removed debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Aug 25, 2015
1 parent 930cb4e commit f244f96
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions test/conf/local.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
var local = {
host: 'localhost',
port: process.env._PORT || 4444,
// host: 'localhost',
// port: process.env._PORT || 4445,
logLevel: 'silent',
waitforTimeout: 1000,
user: process.env.SAUCE_USERNAME,
key: process.env.SAUCE_ACCESS_KEY,
desiredCapabilities: {
browserName: process.env._BROWSER || 'phantomjs'
browserName: process.env._BROWSER || 'chrome',
platform: 'OS X 10.11',
version: '44.0'
}
};

Expand Down
2 changes: 1 addition & 1 deletion test/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ h = {
this.client = client = WebdriverIO.remote(conf).init();
}

return this.client.url('http://google.com' || options.url || conf.testPage.start);
return this.client.url(options.url || conf.testPage.start);
};
},
setupMultibrowser: function(options) {
Expand Down

0 comments on commit f244f96

Please sign in to comment.