From 985effeed35231a06b667a65b32a8c9e7a87968c Mon Sep 17 00:00:00 2001 From: Oj Date: Tue, 1 Feb 2022 21:46:37 +0000 Subject: [PATCH] [CI > Test] Fix trying to use stdout in xvfb-run --- scripts/testStartup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/testStartup.js b/scripts/testStartup.js index 71a277d..c2c87d3 100644 --- a/scripts/testStartup.js +++ b/scripts/testStartup.js @@ -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) => {