Browse Source

Fix npm test output

afc163 7 năm trước cách đây
mục cha
commit
ee9787eb51
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      tests/run-tests.js

+ 1 - 1
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', () => {