check for "jQuery JSON" and "pazpar2" javascript libs
authorWolfram Schneider <wosch@indexdata.dk>
Mon, 1 Dec 2014 15:28:54 +0000 (15:28 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Mon, 1 Dec 2014 15:28:54 +0000 (15:28 +0000)
test/spec/mkws-config.js

index cfabc18..33bd277 100644 (file)
@@ -17,6 +17,15 @@ describe("Check for external JavaScript libs", function () {
         expect(typeof mkws.$).not.toBe('undefined');
     });
 
+    // jquery.json-2.4.js
+    it("jQuery JSON", function () {
+        expect(typeof mkws.$.toJSON).not.toBe('undefined');
+    });
+
+    it("pazpar2", function () {
+        expect(typeof pz2).not.toBe('undefined');
+    });
+
     it("jQuery UI", function () {
         // if we have a popup widget, check for the jQuery UI lib
         if (mkws.$(".mkws-popup").length > 0) {