adding more browsers
Showing
1 changed file
with
13 additions
and
2 deletions
... | @@ -26,7 +26,11 @@ module.exports = function(config) { | ... | @@ -26,7 +26,11 @@ module.exports = function(config) { |
26 | // - PhantomJS | 26 | // - PhantomJS |
27 | // - IE (only Windows) | 27 | // - IE (only Windows) |
28 | // Example usage: | 28 | // Example usage: |
29 | browsers: ['test_browser', 'firefox_test', 'safari_test', 'ipad_test'], | 29 | browsers: ['chrome_test', |
30 | //'firefox_test', | ||
31 | //'safari_test', ' | ||
32 | //'ipad_test', | ||
33 | 'android_test'], | ||
30 | 34 | ||
31 | // List of files / patterns to load in the browser | 35 | // List of files / patterns to load in the browser |
32 | // Add any new src files to this list. | 36 | // Add any new src files to this list. |
... | @@ -103,7 +107,7 @@ module.exports = function(config) { | ... | @@ -103,7 +107,7 @@ module.exports = function(config) { |
103 | 107 | ||
104 | //define SL browsers | 108 | //define SL browsers |
105 | customLaunchers: { | 109 | customLaunchers: { |
106 | test_browser: { | 110 | chrome_test: { |
107 | singleRun: true, | 111 | singleRun: true, |
108 | base: 'SauceLabs', | 112 | base: 'SauceLabs', |
109 | browserName: 'chrome', | 113 | browserName: 'chrome', |
... | @@ -129,6 +133,13 @@ module.exports = function(config) { | ... | @@ -129,6 +133,13 @@ module.exports = function(config) { |
129 | base: 'SauceLabs', | 133 | base: 'SauceLabs', |
130 | browserName: 'ipad', | 134 | browserName: 'ipad', |
131 | platform:'OS X 10.8' | 135 | platform:'OS X 10.8' |
136 | }, | ||
137 | |||
138 | android_test: { | ||
139 | singleRun: true, | ||
140 | base: 'SauceLabs', | ||
141 | browserName: 'android', | ||
142 | platform:'Linux' | ||
132 | } | 143 | } |
133 | 144 | ||
134 | } | 145 | } | ... | ... |
-
Please register or sign in to post a comment