Skip to content

Commit 96ecb53

Browse files
authored
Merge pull request #160 from browserstack/readme_links
Updated readme links
2 parents 4306e4d + df5e037 commit 96ecb53

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To run browser tests on BrowserStack infrastructure, you need to create a `brows
3434
* `test_path`: Path to the test page which will run the tests when opened in a browser.
3535
* `test_framework`: Specify test framework which will run the tests. Currently supporting qunit, jasmine, jasmine2 and mocha.
3636
* `timeout`: Specify worker timeout with BrowserStack.
37-
* `browsers`: A list of browsers on which tests are to be run. Find a [list of all supported browsers and platforms on browerstack.com](http://www.browserstack.com/list-of-browsers-and-platforms?product=live).
37+
* `browsers`: A list of browsers on which tests are to be run. Find a [list of all supported browsers and platforms on browerstack.com](https://www.browserstack.com/list-of-browsers-and-platforms?product=js_testing).
3838
* `build`: A string to identify your test run in Browserstack. In `TRAVIS` setup `TRAVIS_COMMIT` will be the default identifier.
3939
* `proxy`: Specify a proxy to use for the local tunnel. Object with `host`, `port`, `username` and `password` properties.
4040

@@ -99,7 +99,7 @@ Example:
9999
]
100100
```
101101

102-
For a full list of supported browsers, platforms and other details, [visit the BrowserStack site](https://www.browserstack.com/list-of-browsers-and-platforms?product=automate).
102+
For a full list of supported browsers, platforms and other details, [visit the BrowserStack site](https://www.browserstack.com/list-of-browsers-and-platforms?product=js_testing).
103103

104104
#### Compact `browsers` configuration
105105

lib/config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ if (process.env.BROWSERSTACK_KEY) {
3131
config.key = process.env.BROWSERSTACK_KEY;
3232
}
3333

34+
if (process.env.BROWSERSTACK_ACCESS_KEY) {
35+
config.key = process.env.BROWSERSTACK_ACCESS_KEY;
36+
}
37+
3438
if (process.env.BROWSERSTACK_USERNAME) {
3539
config.username = process.env.BROWSERSTACK_USERNAME;
3640
}

0 commit comments

Comments
 (0)