summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolly Ross <sross@redhat.com>2014-09-19 12:49:32 -0400
committerSolly Ross <sross@redhat.com>2014-09-19 12:56:53 -0400
commitf0e4548b16704384f8876c7252babef8b5554501 (patch)
tree682286e231b9ee9f65353844e6b0153eedddcf8e
parente4e9a9b97fec107b25573b29d2e72a6abf8f0a46 (diff)
downloadnovnc-f0e4548b16704384f8876c7252babef8b5554501.tar.gz
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.
-rw-r--r--karma.conf.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/karma.conf.js b/karma.conf.js
index 40e21c8..94b6986 100644
--- a/karma.conf.js
+++ b/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
};
}