X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fjquery.spec.js;h=1f473c9eefee2e334c1053f990ce54bb164aabe3;hb=756d64ef9e9b276ccf0028af414c7db96c76d14b;hp=107094d26df0475f4ed5add5a1c8709e18b7cb6e;hpb=159ab9e0a0b46fc867c1cb2ae6381920b433abb6;p=mkws-moved-to-github.git diff --git a/test/spec/jquery.spec.js b/test/spec/jquery.spec.js index 107094d..1f473c9 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/); + }); }); -