Get rid of the responsive_design boolean configuration item, and always use responsiv...
[mkws-moved-to-github.git] / test / spec / mkws-config.js
index 8cf22e2..2bb84f3 100644 (file)
@@ -9,8 +9,8 @@ describe("Check mkws_config object", function () {
         expect(mkws_config).not.toBe(undefined);
     });
 
-    it("mkws_config service proxy config", function () {
-        expect(mkws_config.service_proxy_url).toBe(undefined);
+    it("mkws_config pazpar2 config", function () {
+        expect(mkws_config.pazpar2_url).toBe(undefined);
     });
 
     it("mkws_config locale check German", function () {
@@ -31,11 +31,11 @@ describe("Check mkws_config object", function () {
 
 describe("Check pazpar2 config", function () {
     it("pazpar2path is a path or an full URL", function () {
-        expect(pazpar2path).toMatch(/^(\/|http:\/\/)/)
+        expect(mkws.pazpar2path).toMatch(/^(\/|http:\/\/)/)
     });
 
     it("usesessions false", function () {
-        expect(usesessions).toBe(false);
+        expect(mkws.usesessions).toBe(false);
     });
 
     it("my_paz is defined", function () {