Skip to content

Commit

Permalink
Make sure the screen size is 800x600 in js tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oxixes committed Jun 28, 2024
1 parent 2fcc4ca commit f18d405
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/GruntFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,13 @@ module.exports = function (grunt) {
options: {
frameworks: ['jasmine'],
reporters: ['progress', 'coverage'],
browsers: ["ChromeHeadless"],
browsers: ["ChromeHeadlessCustom"],
customLaunchers{
ChromeHeadlessCustom: {
base: 'ChromeHeadless',
flags: ['--window-size=800,600']
}
},
singleRun: true
},
styledelements: {
Expand Down

0 comments on commit f18d405

Please sign in to comment.