X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=29bb300e77bae3ed681f870f76b8e622b1654288;hb=4b169e81f4f04255481ae415583ff9bb463656a5;hp=eca9da547c843922002ed6d5e42f9edccdda9b57;hpb=698a34438659d373115b0408d8663d81e6a8e0be;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index eca9da5..29bb300 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -7,7 +7,7 @@ // get references from mkws.js, lazy evaluation var debug = function (text) { // use a debug function with time stamps - mkws.teams["AUTO"].log("Jasmine: " + text); + mkws.teams["AUTO"].info("Jasmine: " + text); //mkws.log("Jasmine: " + text) } @@ -671,7 +671,7 @@ describe("Check SortBy options", function () { var sort_value = 'title:1'; var per_page_number = 20; - // keep current title list + // keep current title list var title_list_old = title_list("xxx "); function title_list(prefix) { @@ -718,7 +718,7 @@ describe("Check SortBy options", function () { var title_list_new = title_list("yyy "); var diff_flag = 0; for (var i = 0; i < title_list_old.length; i++) { - debug((i+1) + ". " + title_list_old[i] + " :: " + title_list_new[i]); + debug((i + 1) + ". " + title_list_old[i] + " :: " + title_list_new[i]); if (title_list_old[i] != title_list_new[i]) { diff_flag++; @@ -731,22 +731,22 @@ describe("Check SortBy options", function () { }); describe("Check async widget discovery", function () { - var $ = mkws.$; - it("initialises a new widget", function() { - $("div.mkws-search").after('
'); - mkws.init("Another search box", "#asyncSearch"); - waitsFor(function () { - return $("#asyncSearch input").length >= 1 ? true : false; - }, "Call init() to build an .mkws-search", 750); - runs(function () { - var numInput = $("div.mkws-search input").length; - debug("Input elements present: " + numInput); - expect(numInput).toBe(4); - var numRec = $("div.mkws-records > div.mkws-summary").length; - debug("Records should still be present. There are: " + numRec); - expect(numRec).toBeGreaterThan(0); + var $ = mkws.$; + it("initialises a new widget", function () { + $("div.mkws-search").after('
'); + mkws.init("Another search box", "#asyncSearch"); + waitsFor(function () { + return $("#asyncSearch input").length >= 1 ? true : false; + }, "Call init() to build an .mkws-search", 750); + runs(function () { + var numInput = $("div.mkws-search input").length; + debug("Input elements present: " + numInput); + expect(numInput).toBe(4); + var numRec = $("div.mkws-records > div.mkws-summary").length; + debug("Records should still be present. There are: " + numRec); + expect(numRec).toBeGreaterThan(0); + }); }); - }); }); /* done */