Commit ee9787eb authored by afc163's avatar afc163

Fix npm test output

parent 3ea51067
...@@ -10,7 +10,7 @@ const startServer = spawn(/^win/.test(process.platform) ? 'npm.cmd' : 'npm', ['s ...@@ -10,7 +10,7 @@ const startServer = spawn(/^win/.test(process.platform) ? 'npm.cmd' : 'npm', ['s
startServer.stderr.on('data', data => { startServer.stderr.on('data', data => {
// eslint-disable-next-line // eslint-disable-next-line
console.log(data); console.log(data.toString());
}); });
startServer.on('exit', () => { startServer.on('exit', () => {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment