File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ function func(config) {
33
33
34
34
func . defaultConfig . autoWatch = false ;
35
35
36
- func . defaultConfig . browsers = [ 'Firefox ' ] ;
36
+ func . defaultConfig . browsers = [ 'Firefox_WindowSized ' ] ;
37
37
38
38
config . set ( func . defaultConfig ) ;
39
39
}
Original file line number Diff line number Diff line change @@ -82,11 +82,15 @@ func.defaultConfig = {
82
82
browsers : [ 'Chrome_WindowSized' ] ,
83
83
84
84
// custom browser options
85
+ // window-size values came from observing default size
85
86
customLaunchers : {
86
87
Chrome_WindowSized : {
87
88
base : 'Chrome' ,
88
- // window-size values came from observing default size
89
89
flags : [ '--window-size=1035,617' , '--ignore-gpu-blacklist' ]
90
+ } ,
91
+ Firefox_WindowSized : {
92
+ base : 'Firefox' ,
93
+ flags : [ '--width=1035' , '--height=617' ]
90
94
}
91
95
} ,
92
96
You can’t perform that action at this time.
0 commit comments