OLD | NEW |
1 module.exports = function(config) { | 1 module.exports = function(config) { |
2 var customLaunchers = { | 2 var customLaunchers = { |
3 sl_chrome: { | 3 sl_chrome: { |
4 base: 'SauceLabs', | 4 base: 'SauceLabs', |
5 browserName: 'chrome', | 5 browserName: 'chrome', |
6 platform: 'Windows 7' | 6 platform: 'Windows 7' |
7 }, | 7 }, |
8 sl_firefox: { | 8 sl_firefox: { |
9 base: 'SauceLabs', | 9 base: 'SauceLabs', |
10 browserName: 'firefox', | 10 browserName: 'firefox', |
(...skipping 30 matching lines...) Expand all Loading... |
41 // Populated in `grunt test` task. | 41 // Populated in `grunt test` task. |
42 ], | 42 ], |
43 singleRun: true, | 43 singleRun: true, |
44 port: 9876, | 44 port: 9876, |
45 reporters: ['dots', 'saucelabs'], | 45 reporters: ['dots', 'saucelabs'], |
46 colors: true, | 46 colors: true, |
47 autoWatch: false, | 47 autoWatch: false, |
48 captureTimeout: 300000, | 48 captureTimeout: 300000, |
49 }); | 49 }); |
50 }; | 50 }; |
OLD | NEW |