aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/autocomplete/autocomplete_events.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-04-03 15:57:57 -0400
committerScott González <scott.gonzalez@gmail.com>2015-04-09 09:24:45 -0400
commitaff3c32ee1f0b81ecea613057e95a40d8edc6b03 (patch)
treedd466998346a8f64153f258b044b5f4348a853c2 /tests/unit/autocomplete/autocomplete_events.js
parente39ee9d6695cebd4ec138b1d5391c67c58d939a9 (diff)
downloadjquery-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.js7
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 ) );
+} );