Skip to content

Commit

Permalink
test(client): Update karma.conf
Browse files Browse the repository at this point in the history
Add IE9-7
  • Loading branch information
dignifiedquire committed Jan 22, 2016
1 parent bf56680 commit 83d18a8
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions test/client/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,31 @@ var launchers = {
browserName: 'internet explorer',
platform: 'Windows 7',
version: '10'
}
},
sl_ie_9: {
base: 'SauceLabs',
browserName: 'internet explorer',
platform: 'Windows 7',
version: '9'
},
sl_ie_8: {
base: 'SauceLabs',
browserName: 'internet explorer',
platform: 'Windows XP',
version: '8'
},
sl_ie_7: {
base: 'SauceLabs',
browserName: 'internet explorer',
platform: 'Windows XP',
version: '7'
}// ,
// sl_ie_6: {
// base: 'SauceLabs',
// browserName: 'internet explorer',
// platform: 'Windows XP',
// version: '6'
// }
}

var browsers = []
Expand Down Expand Up @@ -123,6 +147,10 @@ module.exports = function (config) {
'karma-junit-reporter',
'karma-browserify',
'karma-sauce-launcher'
]
],

concurrency: 3,

forceJSONP: true
})
}

0 comments on commit 83d18a8

Please sign in to comment.