aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/unit/autocomplete/autocomplete_events.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/unit/autocomplete/autocomplete_events.js b/tests/unit/autocomplete/autocomplete_events.js
index d6a008ea2..7b51ec4c0 100644
--- a/tests/unit/autocomplete/autocomplete_events.js
+++ b/tests/unit/autocomplete/autocomplete_events.js
@@ -176,22 +176,4 @@ asyncTest( "blur during remote search", function() {
ac.val( "ro" ).keydown();
});
-/* TODO previous fix broke more than it fixed, disabling this for now - messed up regular menu select event
-test("blur without selection", function() {
- expect(1);
- var ac = $("#autocomplete").autocomplete({
- delay: 0,
- source: data
- });
- stop();
- ac.val("j").keydown();
- setTimeout(function() {
- $( ".ui-menu-item" ).first().simulate("mouseover");
- ac.simulate("keydown", { keyCode: $.ui.keyCode.TAB });
- deepEqual( ac.val(), "j" );
- start();
- }, 50);
-});
-*/
-
}( jQuery ) );