Enable npm and library tests on windows

This commit is contained in:
Michael Krasnyk
2016-12-26 19:00:08 +01:00
committed by Moritz Kobitzsch
parent bd2a5ebe10
commit f48bbb78de
8 changed files with 48 additions and 36 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ module.exports = {
errorReason: (err) => {
return err.signal ?
util.format('killed by signal %s', err.signal) :
util.format('exited with code %d', err.code);
'killed by signal ' + err.signal :
'exited with code ' + err.code;
}
};