Event: Fully clean up events in unit test

Closes gh-1685
This commit is contained in:
Veaceslav Grimalschi 2014-10-08 15:24:55 +04:00 committed by Dave Methvin
parent bc1cb122db
commit 4467ed606a

View File

@ -992,6 +992,7 @@ test("trigger() bubbling", function() {
equal( win, 4, "doc bubble" );
// manually clean up events from elements outside the fixture
jQuery(window).off("click");
jQuery(document).off("click");
jQuery("html, body, #qunit-fixture").off("click");
});
@ -2036,7 +2037,7 @@ test("Non DOM element events", function() {
ok( true, "Event on non-DOM object triggered" );
});
jQuery(o).trigger("nonelementobj");
jQuery(o).trigger("nonelementobj").off("nonelementobj");
});
test("inline handler returning false stops default", function() {