From: Mike Taylor Date: Thu, 20 Mar 2014 09:46:52 +0000 (+0000) Subject: Comment out unnecessarily noisy test/spec/mkws-pazpar2.js logging. X-Git-Tag: 1.0.0~1297 X-Git-Url: http://sru.miketaylor.org.uk/?a=commitdiff_plain;h=70c0eb1717397edf687e4c044c13a7ac14f362cc;p=mkws-moved-to-github.git Comment out unnecessarily noisy test/spec/mkws-pazpar2.js logging. --- diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 78f6f12..fa088fa 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -325,7 +325,7 @@ describe("Check record list", function () { it("check for single active client", function () { waitsFor(function () { var clients = $("div#mkwsStat span.clients"); - debug("clients: " + clients.text()); + //debug("clients: " + clients.text()); return clients.length == 1 && clients.text().match("/1$"); }, "wait for Active clients: x/1", 5 * jasmine_config.second); @@ -361,7 +361,7 @@ describe("Show record", function () { // wait until the record pops up waitsFor(function () { var show = $("div.mkwsRecords div.record:nth-child(" + record_number + ") > div.details"); - debug("poprecord: " + (show ? show.length : -1) + " " + $("div.mkwsRecords div.record").text()); + //debug("poprecord: " + (show ? show.length : -1) + " " + $("div.mkwsRecords div.record").text()); return show != null && show.length ? true : false; }, "wait some miliseconds to show up a record", 2 * jasmine_config.second);