소스 검색

Fix npm test output

afc163 8 년 전
부모
커밋
ee9787eb51
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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', () => {