fix(webkit): pass --headless only on Mac (#135)

This commit is contained in:
Yury Semikhatsky 2019-12-04 17:08:35 -07:00 committed by GitHub
parent fc5898892b
commit 3305363f2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,7 +77,8 @@ export class Launcher {
else
stdio = ['ignore', 'ignore', 'ignore', 'pipe', 'pipe'];
webkitArguments.push('--inspector-pipe');
if (options.headless !== false)
// Headless options is only implemented on Mac at the moment.
if (process.platform === 'darwin' && options.headless !== false)
webkitArguments.push('--headless');
const webkitProcess = childProcess.spawn(
webkitExecutable,