]> source.dussan.org Git - jquery.git/commitdiff
Enforce expects in manipulation.js (https://github.com/jquery/2012-dev-summit/issues...
authorJames Huston <james@jameshuston.net>
Mon, 15 Oct 2012 16:19:20 +0000 (12:19 -0400)
committerRick Waldron <waldron.rick@gmail.com>
Mon, 15 Oct 2012 16:19:20 +0000 (12:19 -0400)
test/unit/manipulation.js

index 45550e98768282e33654219af84884cbfae48a98..738fdf3767f3fdf2b73e9ac11930fc28fc505ca6 100644 (file)
@@ -1901,6 +1901,8 @@ test("Guard against exceptions when clearing safeChildNodes", function() {
 });
 
 test("Ensure oldIE creates a new set on appendTo (#8894)", function() {
+       expect( 5 );
+
        strictEqual( jQuery("<div/>").clone().addClass("test").appendTo("<div/>").end().hasClass("test"), false, "Check jQuery.fn.appendTo after jQuery.clone" );
        strictEqual( jQuery("<div/>").find("p").end().addClass("test").appendTo("<div/>").end().hasClass("test"), false, "Check jQuery.fn.appendTo after jQuery.fn.find" );
        strictEqual( jQuery("<div/>").text("test").addClass("test").appendTo("<div/>").end().hasClass("test"), false, "Check jQuery.fn.appendTo after jQuery.fn.text" );