File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -54,11 +54,15 @@ From the command line (run all required checks):
5454$ npm run test
5555```
5656
57- From your browser (run unit and integration tests separately ):
57+ From your browser (run unit tests):
5858
5959``` bash
6060$ npm run test:karma:unit
61- // or
61+ ```
62+
63+ or (run integration tests):
64+
65+ ``` bash
6266$ npm run test:karma:integration
6367```
6468
Original file line number Diff line number Diff line change @@ -102,6 +102,9 @@ module.exports = function(config) {
102102 browserNoActivityTimeout : 600000 ,
103103 captureTimeout : 600000 ,
104104 sauceLabs : {
105+ startConnect : false ,
106+ // Just something "random" so we don't have to provide additional ENV var when running locally
107+ tunnelIdentifier : process . env . TRAVIS_JOB_NUMBER || Math . ceil ( Math . random ( ) * 1337 ) ,
105108 recordScreenshots : false ,
106109 recordVideo : false ,
107110 testName :
You can’t perform that action at this time.
0 commit comments