Final success message in search input field
authorWolfram Schneider <wosch@indexdata.dk>
Fri, 23 Aug 2013 15:01:17 +0000 (17:01 +0200)
committerWolfram Schneider <wosch@indexdata.dk>
Fri, 23 Aug 2013 15:01:17 +0000 (17:01 +0200)
test/spec/mkws-pazpar2.js

index 0f37a23..c1534b3 100644 (file)
@@ -111,4 +111,9 @@ describe("Check pazpar2 hit counter", function () {
             expect(j_hits).toBeGreaterThan(expected_hits);
         });
     });
+
+    it("Final success message in search input field", function () {
+        $("input#mkwsQuery").val("Success: jasmine test is done");
+        expect($("input#mkwsQuery").val()).toMatch(/done/);
+    });
 });