X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=fa088fa8df4aa16f28081236d5165d35fb7f7564;hb=70c0eb1717397edf687e4c044c13a7ac14f362cc;hp=0f2555b49daadcd3db312fdd46e55169d332a03c;hpb=bd028a8b76d1e1aa342a5cbed5dbc54a35465db8;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 0f2555b..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); @@ -343,10 +343,10 @@ describe("Check record list", function () { waitsFor(function () { // remove + insert node: must be at least 2 return $(linkaddr).length > 0; - }, "wait until we see a new record: " + waitcount, 2.5 * jasmine_config.second); + }, "wait until we see a new record", 2.5 * jasmine_config.second); runs(function () { - expect(waitcount).toBeGreaterThan(0); + expect($(linkaddr).length).toBeGreaterThan(0); }); }); }); @@ -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);