mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Event: Fully clean up events in unit test
Closes gh-1685
This commit is contained in:
parent
bc1cb122db
commit
4467ed606a
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user