X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fjquery.spec.js;h=e5c34e2c209ed7a3bbf52b7ce1cd912e764de036;hb=594a3bf18969d6cbab5671abf5c5945d6df2aab9;hp=107094d26df0475f4ed5add5a1c8709e18b7cb6e;hpb=ea92871be7063838ddeb6529d7f0fdae2bbd4063;p=mkws-moved-to-github.git diff --git a/test/spec/jquery.spec.js b/test/spec/jquery.spec.js index 107094d..e5c34e2 100644 --- a/test/spec/jquery.spec.js +++ b/test/spec/jquery.spec.js @@ -4,31 +4,29 @@ * */ -var $ = jQuery = require('jquery'); +describe("jQuery suite simple", function() { + var $ = require('jquery'); -describe("jQuery suite", function() { - it("jQuery append test", function() { - jQuery("

test passes h1

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

/); + 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/); + }); - jQuery("

this is a paragraph

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

test passes h2

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

/); - it("$ append test", function() { - $("

test passes h2

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

/); + $("

this is a second paragraph

").appendTo("h1"); + expect( $("body").html() ).toMatch(/this is a paragraph/); + }); - $("

this is a second paragraph

").appendTo("h1"); - expect( $("body").html() ).toMatch(/this is a paragraph/); - }); - - 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/); - }); + 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/); + }); }); -