From c930369362fa9c68e8f44296617695fc804e141d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Fri, 20 Jul 2018 15:19:46 +0200 Subject: [PATCH] add debug line for travis bc this is passing locally --- test/onPort.test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/onPort.test.js b/test/onPort.test.js index 7b1b3259..b212b2ce 100644 --- a/test/onPort.test.js +++ b/test/onPort.test.js @@ -43,5 +43,6 @@ child .on('data', (line) => { const regexp = lines.shift() t.ok(regexp, 'we are expecting this line') + console.error(line) t.ok(regexp.test(line), 'line matches ' + regexp) })