[CI > Test] Fix trying to use stdout in xvfb-run
This commit is contained in:
parent
dc69b4899a
commit
985effeed3
1 changed files with 1 additions and 1 deletions
|
@ -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) => {
|
||||
|
|
Loading…
Reference in a new issue