expect($(".mkwsMOTDContainer").length).toBe(1);
expect($(".mkwsMOTDContainer").text()).toMatch(/MOTD/);
});
-
-
});
describe("Check pazpar2 search", function () {
it("MOTD is hidden", function () {
expect($(".mkwsMOTD").length).toBe(1);
expect($(".mkwsMOTD").is(":hidden")).toBe(true);
- //debug("motd " + $(".mkwsMOTD"));
debug("motd t=" + $(".mkwsMOTD").text());
debug("motd v=" + $(".mkwsMOTD").is(":visible"));
- //expect($("div.mkwsBytarget").is(":visible")).toBe(true);
});
});
-
/*
* This part runs in background. It should be rewritten with
* async jasmine functions
waitsFor(function () {
hits = get_hit_counter();
-
return hits > expected_hits;
}, "Expect " + expected_hits + " hits", max_time * jasmine_config.second);
-
runs(function () {
debug("mkws pager found records: '" + hits + "'");
expect($(".mkwsPager").length).toBe(1);
return $("div.mkwsFacetSources").length == 1 ? true : false;
}, "check for facet sources", 4 * jasmine_config.second);
-
// everything displayed?
runs(function () {
var sources = $("div.mkwsFacetSources");
});
});
-
describe("Show record", function () {
var record_number = 1; // the Nth record in hit list
it("show record author", function () {
} else {
return false;
}
-
}, "wait for Active clients: 0/1", 4 * jasmine_config.second);
-
/*
runs(function () {
var clients = $("div#mkwsStat span.clients");
expect(clients.text()).toEqual("0/1");
});
*/
-
});
-
});
/* done */