From 230f710f015e049e2e7965270f22fe3a7595cffa Mon Sep 17 00:00:00 2001 From: "Jeremy@marzhillstudios.com" Date: Tue, 28 Oct 2008 02:27:59 +0000 Subject: [PATCH] removed debugging logging git-svn-id: https://test-tap.googlecode.com/svn/trunk@5 62346678-a08d-11dd-9c66-c9f8973bfffa --- lib/Test/TAP/Class.js | 5 ----- 1 file changed, 5 deletions(-) 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 {