4e0d63b4 by Parul Sharma

adding more browsers

1 parent d9b22c4b
......@@ -26,7 +26,7 @@ module.exports = function(config) {
// - PhantomJS
// - IE (only Windows)
// Example usage:
browsers: ['test_browser'],
browsers: ['test_browser', 'firefox_test', 'safari_test', 'ipad_test'],
// List of files / patterns to load in the browser
// Add any new src files to this list.
......@@ -57,11 +57,11 @@ module.exports = function(config) {
plugins: [
'karma-qunit',
'karma-chrome-launcher',
//'karma-firefox-launcher',
'karma-firefox-launcher',
//'karma-ie-launcher',
//'karma-opera-launcher',
//'karma-phantomjs-launcher',
//'karma-safari-launcher',
'karma-safari-launcher',
'karma-sauce-launcher'
],
......@@ -111,7 +111,29 @@ module.exports = function(config) {
base: 'SauceLabs',
browserName: 'chrome',
platform: 'Windows XP'
},
firefox_test: {
singleRun: true,
base: 'SauceLabs',
browserName: 'firefox',
platform: 'Windows 8'
},
safari_test: {
singleRun: true,
base: 'SauceLabs',
browserName: 'safari',
platform: 'OS X 10.8'
},
ipad_test: {
singleRun: true,
base: 'SauceLabs',
browserName: 'ipad',
platform:'OS X 10.8'
}
}
});
......