[CI > Test] Fix trying to use stdout in xvfb-run

This commit is contained in:
Ducko 2022-02-01 21:46:37 +00:00
parent dc69b4899a
commit 985effeed3
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
const { execFile } = require('child_process');
const test = () => {
const proc = execFile('xvfb-run', ['-e', '/dev/stdout', process.argv[2], '--enable-logging']);
const proc = execFile('xvfb-run', [process.argv[2], '--enable-logging']);
let success = false;
proc.stderr.on('data', (data) => {