aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/selectable/selectable_options.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-04-06 14:38:11 -0400
committerScott González <scott.gonzalez@gmail.com>2015-04-09 09:26:26 -0400
commitb8625346f6de6d7533493fc27b24d8acd45aa84c (patch)
tree3413e800c886284b334b19880d1f9728b44c6c10 /tests/unit/selectable/selectable_options.js
parent4e7407cd699bcb02cfdd6e28d463831e782233e7 (diff)
downloadjquery-ui-b8625346f6de6d7533493fc27b24d8acd45aa84c.tar.gz
jquery-ui-b8625346f6de6d7533493fc27b24d8acd45aa84c.zip
Selectable: Convert tests to new infrastructure
Ref #10119 Ref gh-1528
Diffstat (limited to 'tests/unit/selectable/selectable_options.js')
-rw-r--r--tests/unit/selectable/selectable_options.js10
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);
+} );