From e4a5f2edadcf4363826ae213c7dd70a2413384f0 Mon Sep 17 00:00:00 2001 From: brianc Date: Wed, 11 Jul 2012 22:46:19 -0500 Subject: [PATCH] remove '0' character from test output --- test/test-helper.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test-helper.js b/test/test-helper.js index 6917ea8..46c5dfc 100644 --- a/test/test-helper.js +++ b/test/test-helper.js @@ -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())