mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
chore: use only polling on Travis/SL
This commit is contained in:
parent
7909ebedc2
commit
c64a985307
1 changed files with 7 additions and 0 deletions
|
|
@ -49,4 +49,11 @@ module.exports = function(config) {
|
|||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
// TODO(vojta): remove once SauceLabs supports websockets.
|
||||
// This speeds up the capturing a bit, as browsers don't even try to use websocket.
|
||||
if (process.env.TRAVIS) {
|
||||
config.transports = ['xhr-polling'];
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue