From: Wolfram Schneider Date: Sun, 10 May 2015 16:06:25 +0000 (+0000) Subject: wait a little bit for source facets to avoid race conditions of source facets updates... X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=3352d2985a0abb5898b44cd6cb8e15f515995ae3;ds=sidebyside wait a little bit for source facets to avoid race conditions of source facets updates, MKWS-385 --- diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 1717551..39a8461 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -351,6 +351,19 @@ describe("Check active clients author", function () { } }); }); + + // avoid race conditions of source facets updates + it("wait a little bit for source facets", function () { + // wait a half second, to show the target view + var waittime = 0.5; + var time = (new Date).getTime(); + + waitsFor(function () { + return (new Date).getTime() - time > waittime * jasmine_config.second ? true : false; + }, "wait some miliseconds", (waittime + 0.5) * jasmine_config.second); + + runs(function () {}); + }); }); describe("Check Source Facets", function () {