From e2c315835bc92f0a3f631900a797ac5c072f815f Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Fri, 7 Feb 2014 13:15:59 +0000 Subject: [PATCH] ignore non-functional limit search for authors if running raw pp2, MKWS-114 --- test/spec/mkws-pazpar2.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 422bb54..7baff6c 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -208,6 +208,11 @@ describe("Check Termlist", function () { }); it("limit search to first author", function () { + if (!mkws_config.use_service_proxy) { + debug("running raw pp2, ignore non-functional limit search for authors"); + return; + } + var hits_all_targets = get_hit_counter(); var author_number = 2; // 2=first author // do not click on author with numbers, e.g.: "Bower, James M. Beeman, David, 1938-" -- 1.7.10.4