From ee9787eb513f8fde9af3fe7739969d82ad634213 Mon Sep 17 00:00:00 2001 From: afc163 Date: Wed, 29 Aug 2018 19:03:05 +0800 Subject: [PATCH] Fix npm test output --- tests/run-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-tests.js b/tests/run-tests.js index c371d492..a1b6f259 100644 --- a/tests/run-tests.js +++ b/tests/run-tests.js @@ -10,7 +10,7 @@ const startServer = spawn(/^win/.test(process.platform) ? 'npm.cmd' : 'npm', ['s startServer.stderr.on('data', data => { // eslint-disable-next-line - console.log(data); + console.log(data.toString()); }); startServer.on('exit', () => { -- GitLab