diff options
Diffstat (limited to 'karma-shared.conf.js')
| -rw-r--r-- | karma-shared.conf.js | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/karma-shared.conf.js b/karma-shared.conf.js index 854a18d5..76fd1caf 100644 --- a/karma-shared.conf.js +++ b/karma-shared.conf.js @@ -122,6 +122,10 @@ module.exports = function(config, specificOptions) {      config.transports = ['websocket', 'xhr-polling'];      config.browserStack.build = 'TRAVIS #' + process.env.TRAVIS_BUILD_NUMBER + ' (' + process.env.TRAVIS_BUILD_ID + ')'; +    // TODO(vojta): remove once SauceLabs supports websockets. +    // This speeds up the capturing a bit, as browsers don't even try to use websocket. +    config.transports = ['xhr-polling']; +      // Debug logging into a file, that we print out at the end of the build.      config.loggers.push({        type: 'file', | 
