Skip to content

Commit da24858

Browse files
committed
Merge pull request #2 from browserstack/rename
use BROWSERSTACK_ACCESS_KEY instead of BROWSERSTACK_KEY
2 parents 0d41aaf + 3a5d8d0 commit da24858

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Instructions
77
------------
88

99
1. Get a [BrowserStack](browserstack.com) account.
10-
2. For BrowserStack Authentication export the environment variables for the username and access key of your BrowserStack account. These can be found on the automate accounts page on [BrowserStack](https://www.browserstack.com/accounts/automate) `export BROWSERSTACK_USERNAME=<browserstack-username> && export BROWSERSTACK_KEY=<browserstack-access-key>`
10+
2. For BrowserStack Authentication export the environment variables for the username and access key of your BrowserStack account. These can be found on the automate accounts page on [BrowserStack](https://www.browserstack.com/accounts/automate) `export BROWSERSTACK_USERNAME=<browserstack-username> && export BROWSERSTACK_ACCESS_KEY=<browserstack-access-key>`
1111
3. Install the dependencies by running `npm install browserstack browserstacktunnel-wrapper`
1212
4. Install testem globally by running `npm install testem -g`
1313
5. Run the command `testem ci -l bs_chrome` to test out the setup with just the Chrome browser hosted BrowserStack.

bin/run_on_browserstack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var name = null
66

77
var client = BrowserStack.createClient({
88
username: process.env.BROWSERSTACK_USERNAME,
9-
password: process.env.BROWSERSTACK_KEY
9+
password: process.env.BROWSERSTACK_ACCESS_KEY
1010
});
1111

1212
'SIGINT SIGTERM SIGHUP'.split(' ').forEach(function(evt) {

0 commit comments

Comments
 (0)