From cfd01c60c632dd35ecedf048ede67dfd5120cf4b Mon Sep 17 00:00:00 2001 From: Jared Allard Date: Wed, 24 Feb 2016 21:57:28 -0800 Subject: [PATCH] tests: output output for debug for now --- test/test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test.js b/test/test.js index d60a513..8ead412 100644 --- a/test/test.js +++ b/test/test.js @@ -121,6 +121,10 @@ const runTest = function(test, args, cb) { throw new Error('Test failed (stdout never contained true)'); return cb(false); } + }); + + testinst.stdout.on('data', function(d) { + process.stdout.write(d.toString('ascii')); }) }