Browse Source

Fix npm test output

pull/2080/head
afc163 8 years ago
parent
commit
ee9787eb51
  1. 2
      tests/run-tests.js

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

Loading…
Cancel
Save