diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-03 15:57:57 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:24:45 -0400 |
commit | aff3c32ee1f0b81ecea613057e95a40d8edc6b03 (patch) | |
tree | dd466998346a8f64153f258b044b5f4348a853c2 /tests/unit/autocomplete/autocomplete_events.js | |
parent | e39ee9d6695cebd4ec138b1d5391c67c58d939a9 (diff) | |
download | jquery-ui-aff3c32ee1f0b81ecea613057e95a40d8edc6b03.tar.gz jquery-ui-aff3c32ee1f0b81ecea613057e95a40d8edc6b03.zip |
Autocomplete: Convert tests to new infrastructure
Ref #10119
Ref gh-1528
Diffstat (limited to 'tests/unit/autocomplete/autocomplete_events.js')
-rw-r--r-- | tests/unit/autocomplete/autocomplete_events.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/unit/autocomplete/autocomplete_events.js b/tests/unit/autocomplete/autocomplete_events.js index a7c366800..606562aa9 100644 --- a/tests/unit/autocomplete/autocomplete_events.js +++ b/tests/unit/autocomplete/autocomplete_events.js @@ -1,4 +1,7 @@ -(function( $ ) { +define( [ + "jquery", + "ui/autocomplete" +], function( $ ) { module( "autocomplete: events" ); @@ -179,4 +182,4 @@ asyncTest( "blur during remote search", function() { ac.val( "ro" ).keydown(); }); -}( jQuery ) ); +} ); |