Check for external JavaScript libs, part of MKWS-341
authorWolfram Schneider <wosch@indexdata.dk>
Mon, 1 Dec 2014 15:13:31 +0000 (15:13 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Mon, 1 Dec 2014 15:13:31 +0000 (15:13 +0000)
test/spec/mkws-config.js

index 980b262..c1963d2 100644 (file)
@@ -4,6 +4,27 @@
  *
  */
 
+describe("Check for external JavaScript libs", function () {
+    it("JSNlog", function () {
+        expect(typeof JL).not.toBe('undefined');
+    });
+
+    it("Handlebars", function () {
+        expect(typeof Handlebars).not.toBe('undefined');
+    });
+
+    it("jQuery", function () {
+        expect(typeof mkws.$).not.toBe('undefined');
+    });
+
+    xit("jQuery UI", function () {
+        // if we have a popup widget, check for the jQuery UI lib
+        if ($(".popup").length > 0) {
+            expect(typeof mkws.$.ui).not.toBe('undefined');
+        }
+    });
+});
+
 describe("Check mkws.config object", function () {
     it("mkws.config exists", function () {
         expect(mkws.config).not.toBe(undefined);