mirror of
https://github.com/appium/appium.git
synced 2026-01-24 11:18:55 -06:00
Merge pull request #96 from maudineormsby/master
Use environment variables for raw.js
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
var wd = require("wd")
|
||||
, assert = require("assert")
|
||||
, username = "<username>" // Omit for a local test run
|
||||
, accessKey = "<accessKey>" // Omit for a local test run
|
||||
, username = process.env.SAUCE_USERNAME // Omit for a local test run
|
||||
, accessKey = process.env.SAUCE_ACCESS_KEY // Omit for a local test run
|
||||
, appURL = "https://raw.github.com/appium/appium/master/assets/TestApp.app.zip";
|
||||
|
||||
// Instantiate a new browser sessoin
|
||||
|
||||
Reference in New Issue
Block a user