From 02f12e28b9ce3119ab16a910157d41b8eab8a87c Mon Sep 17 00:00:00 2001 From: soulgalore Date: Fri, 19 Sep 2014 21:21:31 +0200 Subject: [PATCH] removed test output --- lib/tests/tap.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/tests/tap.js b/lib/tests/tap.js index 24ea084c5..dacfe968d 100644 --- a/lib/tests/tap.js +++ b/lib/tests/tap.js @@ -13,7 +13,6 @@ exports.writeTap = function(fileName, results, cb) { tap.createStream().pipe(outStream); var i = 0; results.forEach(function(result) { - tap(result.type + ' ' + result.title + ' ' + result.url, function(t) { i++; if (result.skipped) { @@ -23,9 +22,7 @@ exports.writeTap = function(fileName, results, cb) { } t.end(); // check if last and fire callback - if (i === results.length) { - console.log("i:" + i + 'le:' + results.length); cb(); } });