Skip to content

Commit e4a5f2e

Browse files
committed
remove '0' character from test output
1 parent 046c4f0 commit e4a5f2e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/test-helper.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,9 @@ var args = require(__dirname + '/cli');
156156
if(args.binary) process.stdout.write(' (binary)');
157157
if(args.native) process.stdout.write(' (native)');
158158

159-
process.on('exit', console.log)
159+
process.on('exit', function() {
160+
console.log('')
161+
})
160162

161163
process.on('uncaughtException', function(err) {
162164
console.error("\n %s", err.stack || err.toString())

0 commit comments

Comments
 (0)