X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Ffx.js;h=e1793ec1fdc95cefd3dc87d34d4078d449fb93f8;hb=6e5a6a26a7d802b3abdc32d3b49f4936d1f63cd7;hp=c2bf6b43ff514ed4ff98c0865e90267c4fc0f54a;hpb=3106039aa89410c9abae9947b2520d9c8e62f8f0;p=jquery.git diff --git a/test/unit/fx.js b/test/unit/fx.js index c2bf6b4..e1793ec 100644 --- a/test/unit/fx.js +++ b/test/unit/fx.js @@ -1,13 +1,19 @@ module("fx"); test("show()", function() { - expect(15); + expect(16); var pass = true, div = jQuery("#main div"); div.show().each(function(){ if ( this.style.display == "none" ) pass = false; }); ok( pass, "Show" ); + pass = true; + div.hide().show(null).each(function() { + if ( this.style.display == "none" ) pass = false; + }); + ok( pass, "Show will null speed"); + jQuery("#main").append('

'); var old = jQuery("#show-tests table").show().css("display") !== "table";