We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 440f815 commit 4340323Copy full SHA for 4340323
test/jasmine/karma.conf.js
@@ -69,7 +69,15 @@ func.defaultConfig = {
69
70
// start these browsers
71
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
72
- browsers: ['Chrome'],
+ browsers: ['Chrome_WindowSized'],
73
+
74
+ // custom browser options
75
+ customLaunchers: {
76
+ Chrome_WindowSized: {
77
+ base: 'Chrome',
78
+ flags: ['--window-size=1035,617'] // values came from observing default size; all test cases pass with it
79
+ }
80
+ },
81
82
// Continuous Integration mode
83
// if true, Karma captures browsers, runs the tests and exits
0 commit comments