File tree Expand file tree Collapse file tree 1 file changed +27
-2
lines changed
Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -47,16 +47,41 @@ module.exports = function(config) {
4747 + 'environment variables!' ) ;
4848 }
4949 cfg . reporters . push ( 'saucelabs' ) ;
50- cfg . browsers . push ( 'ie8' ) ;
5150 cfg . customLaunchers = {
5251 ie8 : {
5352 base : 'SauceLabs' ,
5453 browserName : 'internet explorer' ,
55- platform : 'Windows XP ' ,
54+ platform : 'Windows 7 ' ,
5655 version : '8.0'
56+ } ,
57+ chrome : {
58+ base : 'SauceLabs' ,
59+ browserName : 'chrome' ,
60+ platform : 'Windows 8' ,
61+ version : 'latest'
62+ } ,
63+ edge : {
64+ base : 'SauceLabs' ,
65+ browserName : 'MicrosoftEdge' ,
66+ platform : 'Windows 10' ,
67+ version : 'latest'
68+ } ,
69+ firefox : {
70+ base : 'SauceLabs' ,
71+ browserName : 'firefox' ,
72+ platform : 'Windows 8.1' ,
73+ version : 'latest'
74+ } ,
75+ safari : {
76+ base : 'SauceLabs' ,
77+ browserName : 'safari' ,
78+ platform : 'OS X 10.11' ,
79+ version : 'latest'
5780 }
5881 } ;
5982
83+ cfg . browsers = cfg . browsers . concat ( Object . keys ( cfg . customLaunchers ) ) ;
84+
6085 cfg . sauceLabs = {
6186 public : 'public'
6287 } ;
You can’t perform that action at this time.
0 commit comments