Skip to content

Commit

Permalink
πŸ—πŸ› Fix incorrect condition for headless mode in visual-diff task (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrozenberg committed May 6, 2024
1 parent cf284c8 commit ac8532e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-system/tasks/visual-diff/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async function launchBrowser() {
'--no-startup-window',
],
dumpio: argv.chrome_debug,
headless: !!argv.dev,
headless: !argv.dev,
executablePath: locateChromeExecutablePath(),
waitForInitialPage: false,
};
Expand Down

0 comments on commit ac8532e

Please sign in to comment.