aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/selectmenu/selectmenu_options.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-04-06 14:40:47 -0400
committerScott González <scott.gonzalez@gmail.com>2015-04-09 09:26:26 -0400
commit3522fd9618d196beb235f3bd52f85c31f20c57b8 (patch)
tree3c6c651c194e76ed8303547f5d91a616c456e0f3 /tests/unit/selectmenu/selectmenu_options.js
parentb8625346f6de6d7533493fc27b24d8acd45aa84c (diff)
downloadjquery-ui-3522fd9618d196beb235f3bd52f85c31f20c57b8.tar.gz
jquery-ui-3522fd9618d196beb235f3bd52f85c31f20c57b8.zip
Selectmenu: Convert tests to new infrastructure
Ref #10119 Ref gh-1528
Diffstat (limited to 'tests/unit/selectmenu/selectmenu_options.js')
-rw-r--r--tests/unit/selectmenu/selectmenu_options.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/unit/selectmenu/selectmenu_options.js b/tests/unit/selectmenu/selectmenu_options.js
index 7ed841a90..deb7a6d3a 100644
--- a/tests/unit/selectmenu/selectmenu_options.js
+++ b/tests/unit/selectmenu/selectmenu_options.js
@@ -1,4 +1,7 @@
-(function ( $ ) {
+define( [
+ "jquery",
+ "ui/selectmenu"
+], function( $ ) {
module( "selectmenu: options" );
@@ -122,4 +125,4 @@ test( "width", function() {
equal( button.outerWidth(), 300, "button width fills container" );
});
-})( jQuery );
+} );