Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit caed010

Browse files
committed
re-enable custom tunneling
1 parent 44cca3e commit caed010

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

karma-shared.conf.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@ module.exports = function(config, specificOptions) {
178178
var buildLabel = 'TRAVIS #' + process.env.TRAVIS_BUILD_NUMBER + ' (' + process.env.TRAVIS_BUILD_ID + ')';
179179

180180
config.concurrency = 3;
181-
config.retryLimit = 5;
182181

183182
// Karma (with socket.io 1.x) buffers by 50 and 50 tests can take a long time on IEs;-)
184183
config.browserNoActivityTimeout = 120000;
@@ -188,8 +187,8 @@ module.exports = function(config, specificOptions) {
188187
config.browserStack.tunnelIdentifier = process.env.TRAVIS_JOB_NUMBER;
189188

190189
config.sauceLabs.build = buildLabel;
191-
// config.sauceLabs.startConnect = false;
192-
// config.sauceLabs.tunnelIdentifier = process.env.TRAVIS_JOB_NUMBER;
190+
config.sauceLabs.startConnect = false;
191+
config.sauceLabs.tunnelIdentifier = process.env.TRAVIS_JOB_NUMBER;
193192
// config.sauceLabs.recordScreenshots = false;
194193
// config.sauceLabs.recordVideo = false;
195194

scripts/travis/before_build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ mkdir -p "$LOGS_DIR"
66

77
if [ "$JOB" != "ci-checks" ]; then
88
echo "start_browser_provider"
9-
# ./scripts/travis/start_browser_provider.sh
9+
./scripts/travis/start_browser_provider.sh
1010
fi
1111

1212
# ci-checks and unit tests do not run against the packaged code
@@ -24,5 +24,5 @@ fi
2424
# has probably arrived
2525
if [ "$JOB" != "ci-checks" ]; then
2626
echo "wait_for_browser_provider"
27-
# ./scripts/travis/wait_for_browser_provider.sh
27+
./scripts/travis/wait_for_browser_provider.sh
2828
fi

0 commit comments

Comments
 (0)