removed debugging logging

git-svn-id: https://test-tap.googlecode.com/svn/trunk@5 62346678-a08d-11dd-9c66-c9f8973bfffa
This commit is contained in:
Jeremy@marzhillstudios.com 2008-10-28 02:27:59 +00:00
parent c389566659
commit 230f710f01

View File

@ -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 {