From dd5eafa7b05b66c54c9d6de91bdc813388c708e9 Mon Sep 17 00:00:00 2001 From: Nico Jansen Date: Fri, 16 Dec 2022 10:07:33 +0100 Subject: [PATCH] Remove unused stdio settings --- test/run-decktape.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/run-decktape.js b/test/run-decktape.js index 8ac2a2d..0bacdca 100644 --- a/test/run-decktape.js +++ b/test/run-decktape.js @@ -30,7 +30,6 @@ function runDecktape(port, inputDir) { const outputFile = path.resolve(outputDirectory, `${inputDir}.pdf`); const process = childProcess.exec( `node ${decktapeExecutable} http://localhost:${port}/input/${inputDir}/ ${outputFile}`, - { stdio: "inherit" }, (err) => { if (err) { rej(err);