Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion test/jasmine/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,15 @@ func.defaultConfig = {

// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['Chrome'],
browsers: ['Chrome_WindowSized'],

// custom browser options
customLaunchers: {
Chrome_WindowSized: {
base: 'Chrome',
flags: ['--window-size=1035,617'] // values came from observing default size; all test cases pass with it
}
},

// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
Expand Down