From f3dd4da433bb1c8cb0fff974d2eb0b699da631a5 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Wed, 21 Aug 2013 18:11:02 +0200 Subject: [PATCH] don't mix jQuery and '$', they can be different variables --- test/spec/mkws-index-jsdom.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/mkws-index-jsdom.spec.js b/test/spec/mkws-index-jsdom.spec.js index fa31fea..5b49cf3 100644 --- a/test/spec/mkws-index-jsdom.spec.js +++ b/test/spec/mkws-index-jsdom.spec.js @@ -26,7 +26,7 @@ function jsdom_check (file, tags_array, ignore_doctype) { }).createWindow(); /* apply jquery to the window */ - var $ = jQuery = require('jquery').create(window); + var $ = require('jquery').create(window); it("html jquery test", function() { -- 1.7.10.4