You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by cm...@apache.org on 2009/01/15 10:00:39 UTC

svn commit: r734636 - /couchdb/trunk/share/www/script/couch_test_runner.js

Author: cmlenz
Date: Thu Jan 15 01:00:39 2009
New Revision: 734636

URL: http://svn.apache.org/viewvc?rev=734636&view=rev
Log:
Oops, removed debugging leftovers from r734633.

Modified:
    couchdb/trunk/share/www/script/couch_test_runner.js

Modified: couchdb/trunk/share/www/script/couch_test_runner.js
URL: http://svn.apache.org/viewvc/couchdb/trunk/share/www/script/couch_test_runner.js?rev=734636&r1=734635&r2=734636&view=diff
==============================================================================
--- couchdb/trunk/share/www/script/couch_test_runner.js (original)
+++ couchdb/trunk/share/www/script/couch_test_runner.js Thu Jan 15 01:00:39 2009
@@ -137,9 +137,7 @@
 
 function updateTestsFooter() {
   var tests = $("#tests tbody.content tr td.status");
-  console.log(tests);
   var testsRun = tests.filter(".success, .error, .failure");
-  console.log(testsRun)
   var testsFailed = testsRun.not(".success");
   $("#tests tbody.footer td").text(testsRun.length + " of " + tests.length +
     " test(s) run, " + testsFailed.length + " failures");