From: James Huston Date: Mon, 15 Oct 2012 16:16:49 +0000 (-0400) Subject: Enforce expects in events.js (https://github.com/jquery/2012-dev-summit/issues/53... X-Git-Tag: 1.9.0b1~223 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6ac87167893e1de24761eaff47bbf9a20d0d6f98;p=jquery.git Enforce expects in events.js (https://github.com/jquery/2012-dev-summit/issues/53) Closes gh-961 --- diff --git a/test/unit/event.js b/test/unit/event.js index 74d30dbb6..48ba2df91 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -420,6 +420,8 @@ test("bind/delegate bubbling, isDefaultPrevented", function() { }); test("bind(), iframes", function() { + expect( 1 ); + // events don't work with iframes, see #939 - this test fails in IE because of contentDocument var doc = jQuery("#loadediframe").contents(); @@ -2511,6 +2513,8 @@ test("delegate with change", function(){ }); test("delegate with submit", function() { + expect( 2 ); + var count1 = 0, count2 = 0; jQuery("#body").delegate("#testForm", "submit", function(ev) {