From: Wolfram Schneider Date: Mon, 16 Sep 2013 10:15:42 +0000 (+0000) Subject: fix 'check status clients' runs() X-Git-Tag: 0.9.1~202^2~9 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=81f06d1be8cd4d9b747f7a0e802cfab540499827 fix 'check status clients' runs() --- diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 0d1b201..7e9a128 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -239,6 +239,7 @@ describe("Check switch menu Records/Targets", function () { waitsFor(function () { return (new Date).getTime() - time > 700 ? true : false; }, "wait some miliseconds", 1 * 1000); + // look for table header runs(function () { expect($("div#mkwsBytarget").html()).toMatch(/Target ID/); @@ -264,7 +265,6 @@ describe("Check status client counter", function () { var time = get_time(); it("check status clients", function () { - waitsFor(function () { var clients = $("div#mkwsStat span.clients"); if (clients.length == 1 && clients.text() == "0/1") { @@ -275,11 +275,12 @@ describe("Check status client counter", function () { }, "wait for status", 4 * 1000); - }); - runs(function () { - var clients = $("div#mkwsStat span.clients"); - debug("span.clients: " + clients.text()); - expect(clients.text()).toEqual("0/1"); + runs(function () { + var clients = $("div#mkwsStat span.clients"); + debug("span.clients: " + clients.text()); + expect(clients.text()).toEqual("0/1"); + }); + }); });