From f79d0a3be86281b481609f2f9ecf6208df32c1a7 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 5 Jun 2019 19:03:09 -0700 Subject: [PATCH] fix: try running without `--disable-gpu` on windows (#4523) It looks like https://crbug.com/737678 and https://crbug.com/729961 are fixed - so we shouldn't need the `--disable-gpu` flag on windows headless. Reference #1260 --- lib/Launcher.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Launcher.js b/lib/Launcher.js index 7ad5c63a6f3..8a92ab7486e 100644 --- a/lib/Launcher.js +++ b/lib/Launcher.js @@ -242,8 +242,6 @@ class Launcher { '--hide-scrollbars', '--mute-audio' ); - if (os.platform() === 'win32') - chromeArguments.push('--disable-gpu'); } if (args.every(arg => arg.startsWith('-'))) chromeArguments.push('about:blank');