File tree 1 file changed +27
-2
lines changed
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) {
47
47
+ 'environment variables!' ) ;
48
48
}
49
49
cfg . reporters . push ( 'saucelabs' ) ;
50
- cfg . browsers . push ( 'ie8' ) ;
51
50
cfg . customLaunchers = {
52
51
ie8 : {
53
52
base : 'SauceLabs' ,
54
53
browserName : 'internet explorer' ,
55
- platform : 'Windows XP ' ,
54
+ platform : 'Windows 7 ' ,
56
55
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'
57
80
}
58
81
} ;
59
82
83
+ cfg . browsers = cfg . browsers . concat ( Object . keys ( cfg . customLaunchers ) ) ;
84
+
60
85
cfg . sauceLabs = {
61
86
public : 'public'
62
87
} ;
You can’t perform that action at this time.
0 commit comments