mirror of
https://github.com/appium/appium.git
synced 2026-02-09 19:28:48 -06:00
13 lines
205 B
JavaScript
13 lines
205 B
JavaScript
|
|
exports.local = {
|
|
host: 'localhost',
|
|
port: 4723
|
|
};
|
|
|
|
exports.sauce = {
|
|
host: 'ondemand.saucelabs.com',
|
|
port: 80,
|
|
username: process.env.SAUCE_USERNAME,
|
|
password: process.env.SAUCE_ACCESS_KEY
|
|
};
|