switch from "jquery" to "jQuery" module
authorWolfram Schneider <wosch@indexdata.dk>
Fri, 3 Jan 2014 15:42:59 +0000 (15:42 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Fri, 3 Jan 2014 15:42:59 +0000 (15:42 +0000)
the old jquery module upgraded to v2.10 which is no
longer compatible with our tests.

test/Makefile
test/spec/jquery.spec.js
test/spec/jsdom.spec.js
test/spec/mkws-index-jsdom.spec.js

index e434e05..c47ab00 100644 (file)
@@ -23,7 +23,7 @@ jsbeautifier jsb indent:
 
 node-modules: node_modules
 node_modules:
-       npm install jquery jsdom request jasmine-node
+       npm install jQuery xmlhttprequest jsdom request jasmine-node
 
 help:
        @echo "make [ all | check | clean | distclean ]"
index 2f3baa8..1f473c9 100644 (file)
@@ -5,7 +5,7 @@
  */
 
 describe("jQuery suite simple", function () {
-    var $ = require('jquery');
+    var $ = require('jQuery');
 
     it("jQuery append test", function () {
         $("body").append("<h1>test passes h1</h1>");
index 725d052..c83809a 100644 (file)
@@ -8,9 +8,9 @@ describe("jQuery suite", function () {
     var jsdom = require('jsdom').jsdom;
     var myWindow = jsdom().createWindow();
 
-    var $ = require('jquery');
-    var jq = require('jquery').create();
-    var jQuery = require('jquery').create(myWindow);
+    var $ = require('jQuery');
+    var jq = require('jQuery').create();
+    var jQuery = require('jQuery').create(myWindow);
 
     it("jQuery append test", function () {
         jQuery("<h1>test passes h1</h1>").appendTo("body");
index 8ed7993..471c03e 100644 (file)
@@ -26,7 +26,7 @@ function jsdom_check(file, tags_array, ignore_doctype) {
         }).createWindow();
 
         /* apply jquery to the window */
-        var $ = require('jquery').create(window);
+        var $ = require('jQuery').create(window);
 
 
         it("html jquery test", function () {