diff options
| author | Vojta Jina | 2013-08-20 14:43:15 -0700 |
|---|---|---|
| committer | Vojta Jina | 2013-08-23 16:49:10 -0700 |
| commit | 7909ebedc2a098f041dd2d3835e7297392bfdb7d (patch) | |
| tree | 92d16a01e9df2d437bbfc79ccc38099936833fbe /karma-shared.conf.js | |
| parent | 1d06a943857719ef533ca374c05aa5e02089a4d9 (diff) | |
| download | angular.js-7909ebedc2a098f041dd2d3835e7297392bfdb7d.tar.bz2 | |
chore: run more browsers on Travis (IE8,IE9,IE10,Safari,FF)
Also instead of running everything in parallel, there are only two parallel tasks:
- e2e tests running in the background (only on Chrome)
- all the unit tests running sequentially
Diffstat (limited to 'karma-shared.conf.js')
| -rw-r--r-- | karma-shared.conf.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/karma-shared.conf.js b/karma-shared.conf.js index 81476708..727720a4 100644 --- a/karma-shared.conf.js +++ b/karma-shared.conf.js @@ -18,6 +18,34 @@ module.exports = function(config) { 'SL_Chrome': { base: 'SauceLabs', browserName: 'chrome' + }, + 'SL_Firefox': { + base: 'SauceLabs', + browserName: 'firefox' + }, + 'SL_Safari': { + base: 'SauceLabs', + browserName: 'safari', + platform: 'Mac 10.8', + version: '6' + }, + 'SL_IE_8': { + base: 'SauceLabs', + browserName: 'internet explorer', + platform: 'Windows 7', + version: '8' + }, + 'SL_IE_9': { + base: 'SauceLabs', + browserName: 'internet explorer', + platform: 'Windows 2008', + version: '9' + }, + 'SL_IE_10': { + base: 'SauceLabs', + browserName: 'internet explorer', + platform: 'Windows 2012', + version: '10' } } }); |
