removed test output

This commit is contained in:
soulgalore 2014-09-19 21:21:31 +02:00
parent 40c9627ff1
commit 02f12e28b9
1 changed files with 0 additions and 3 deletions

View File

@ -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();
}
});