diff --git a/lib/Test/TAP/Class.js b/lib/Test/TAP/Class.js index 53b2740..c75316e 100644 --- a/lib/Test/TAP/Class.js +++ b/lib/Test/TAP/Class.js @@ -149,23 +149,18 @@ Test.TAP.Class.prototype.run_tests = function() { } var run = function () { if(self.finished) { - console.log('methods = '+methods+' length: '+methods.length+' Interval: '+testRunInterval); - //console.log('count = '+count+' Interval: '+testRunInterval); if(count > 0) { if(self.on_finished) { onFinish() self.on_finished() } } - console.log('made it past count test for interval: '+testRunInterval); if(methods.length == 0) { - console.log('clearing interval: '+testRunInterval); clearInterval(testRunInterval) if(self.on_finished_all) { self.on_finished_all() } } else { - console.log('we are finished but methods is not long enough interval: '+testRunInterval); self.finished = false; } } else {