- feature #24: extended behaviour of "setHeader" method

- added test suite for www interface of plugin (js files)
This commit is contained in:
Sefa Ilkimen
2017-10-20 17:22:51 +02:00
parent 1375727316
commit d7e13b046b
16 changed files with 149 additions and 36 deletions
+16
View File
@@ -0,0 +1,16 @@
const local = {
host: 'localhost',
port: 4723
};
const sauce = {
host: 'ondemand.saucelabs.com',
port: 80,
auth: process.env.SAUCE_USERNAME + ":" + process.env.SAUCE_ACCESS_KEY
};
if (process.env.SAUCE_USERNAME) {
module.exports = sauce;
} else {
module.exports = local;
}