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
This commit is contained in:
Andrey Lushnikov 2019-06-05 19:03:09 -07:00 committed by GitHub
parent 15804d111a
commit f79d0a3be8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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');