X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fjquery.spec.js;h=2617b3df1ed01eba4569bde61c10000dfc4551c2;hb=cd98664aa255423195fd3a63d7b738171a25ae28;hp=e5c34e2c209ed7a3bbf52b7ce1cd912e764de036;hpb=594a3bf18969d6cbab5671abf5c5945d6df2aab9;p=mkws-moved-to-github.git diff --git a/test/spec/jquery.spec.js b/test/spec/jquery.spec.js index e5c34e2..2617b3d 100644 --- a/test/spec/jquery.spec.js +++ b/test/spec/jquery.spec.js @@ -1,32 +1,32 @@ -/* Copyright (c) 2013 IndexData ApS. http://indexdata.com +/* Copyright (c) 2013-2015 Index Data ApS. http://indexdata.com * - * jQuery test + * jquery test * */ -describe("jQuery suite simple", function() { - var $ = require('jquery'); +describe("jquery suite simple", function () { + var $ = require('jquery')(require("jsdom").jsdom().parentWindow); - it("jQuery append test", function() { - $("body").append("

test passes h1

"); - expect( $("body").html() ).toMatch(/

/); - $("

this is a paragraph

").appendTo("h1"); - expect( $("body").html() ).toMatch(/this is a paragraph/); + it("jquery append test", function () { + $("body").append("

test passes h1

"); + expect($("body").html()).toMatch(/

/); + $("

this is a paragraph

").appendTo("h1"); + expect($("body").html()).toMatch(/this is a paragraph/); }); - it("$ append test", function() { + it("$ append test", function () { $("

test passes h2

").appendTo("body"); - expect( $("body").html() ).toMatch(/

/); + expect($("body").html()).toMatch(/

/); $("

this is a second paragraph

").appendTo("h1"); - expect( $("body").html() ).toMatch(/this is a paragraph/); + expect($("body").html()).toMatch(/this is a paragraph/); }); - it("more jquery tests", function() { + it("more jquery tests", function () { // other tests - expect( $("h2").html() ).toMatch(/test passes h2/); - expect( $("h1").html() ).toMatch(/test passes h1/); - expect( $("h1").html() ).not.toMatch(/^$/); - expect( $("h1").html() ).not.toMatch(/foobar/); + expect($("h2").html()).toMatch(/test passes h2/); + expect($("h1").html()).toMatch(/test passes h1/); + expect($("h1").html()).not.toMatch(/^$/); + expect($("h1").html()).not.toMatch(/foobar/); }); });