Skip to content

Commit

Permalink
non-headless
Browse files Browse the repository at this point in the history
  • Loading branch information
Nebyt committed Apr 16, 2024
1 parent 5f81db7 commit 1526f6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/e2e-tests/utils/driverBootstrap.js
Expand Up @@ -66,7 +66,7 @@ const getChromeBuilder = () => {
'--disable-dev-shm-usage',
'--disable-setuid-sandbox',
'--start-maximized',
'--headless=new', // Runs the browser in the headless mode
// '--headless=new', // Runs the browser in the headless mode
)
.setUserPreferences({ 'download.default_directory': downloadsDir })
);
Expand All @@ -81,7 +81,7 @@ const getFirefoxBuilder = () => {
*/
.setBinary(firefoxBin)
.addExtensions(path.resolve(__extensionDir, 'Yoroi.xpi'))
.addArguments('--headless') // Runs the browser in the headless mode
// .addArguments('--headless') // Runs the browser in the headless mode
/**
* Firefox disallows unsigned extensions by default. We solve this through a config change
* The proper way to do this is to use the "temporary addon" feature of Firefox
Expand Down

0 comments on commit 1526f6f

Please sign in to comment.