Skip to content

Commit

Permalink
read sauce info from env
Browse files Browse the repository at this point in the history
  • Loading branch information
Niall O'Higgins committed Sep 28, 2012
1 parent 84fd79d commit 72b7cc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/sauce.js
Expand Up @@ -13,9 +13,9 @@ var BASE_URL = REMOTE_HOST + ":" + REMOTE_PORT + "/"
console.log("BASE_URL: %s", BASE_URL)

var desired = {
browserName: 'chrome',
version: '',
platform: 'linux',
browserName: process.env.SAUCE_BROWSER || 'chrome',
version: process.env.SAUCE_BROWSER_VERSION || '',
platform: process.env.SAUCE_OS || 'linux',
name: "strider-sauce-sample"
}

Expand Down

0 comments on commit 72b7cc0

Please sign in to comment.