소스 검색

Fix Travis Sauce Tunnel Issues

Travis is failing because Sauce can't find the appropriate tunnelid.
This should fix that but setting the tunnel id to be the Travis
job number.
Solly Ross 11 년 전
부모
커밋
f0e4548b16
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      karma.conf.js

+ 2 - 0
karma.conf.js

@@ -182,9 +182,11 @@ module.exports = function(config) {
   };
 
   if (useSauce) {
+    my_conf.captureTimeout = 0; // use SL timeout
     my_conf.sauceLabs = {
       testName: 'noVNC Tests (all)',
       startConnect: true,
+      tunnelIdentifier: process.env.TRAVIS_JOB_NUMBER
     };
   }