remove '0' character from test output

This commit is contained in:
brianc 2012-07-11 22:46:19 -05:00
parent 046c4f07c2
commit e4a5f2edad

View File

@ -156,7 +156,9 @@ var args = require(__dirname + '/cli');
if(args.binary) process.stdout.write(' (binary)');
if(args.native) process.stdout.write(' (native)');
process.on('exit', console.log)
process.on('exit', function() {
console.log('')
})
process.on('uncaughtException', function(err) {
console.error("\n %s", err.stack || err.toString())