X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=1f1dc749aacbd0b6f26b784ef82e310244a5e2d2;hb=aa8a489733292471244291be1890103b6f680e97;hp=78f6f12a64e582afd0e07048a7589a3dd7ce7d63;hpb=dc511ecf30c67726bb5f5b0538c20549e43f2b4d;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 78f6f12..1f1dc74 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -6,7 +6,7 @@ // get references from mkws.js, lazy evaluation var debug = function (text) { - mkws.debug("Jasmine: " + text) + mkws.log("Jasmine: " + text) } // Define empty mkws_config for simple applications that don't define it. @@ -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);