diff options
Diffstat (limited to 'tests/unit/selectable/selectable_options.js')
-rw-r--r-- | tests/unit/selectable/selectable_options.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/unit/selectable/selectable_options.js b/tests/unit/selectable/selectable_options.js index 292c0cf96..cdbfb4aab 100644 --- a/tests/unit/selectable/selectable_options.js +++ b/tests/unit/selectable/selectable_options.js @@ -1,7 +1,7 @@ -/* - * selectable_options.js - */ -(function($) { +define( [ + "jquery", + "ui/selectable" +], function( $ ) { module("selectable: options"); @@ -61,4 +61,4 @@ test("filter", function() { el.selectable("destroy"); }); -})(jQuery); +} ); |