aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/menu/menu_common.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-04-06 13:04:04 -0400
committerScott González <scott.gonzalez@gmail.com>2015-04-09 09:26:26 -0400
commitf2ca8f92f0d9ab9c7bf2e202e7ff7778daeef85c (patch)
tree790023b094bbf4890f4d552b3a75ccc1177fda5b /tests/unit/menu/menu_common.js
parenta0e3da0459e4fbbde99dfa5f41929fdc82dfde1e (diff)
downloadjquery-ui-f2ca8f92f0d9ab9c7bf2e202e7ff7778daeef85c.tar.gz
jquery-ui-f2ca8f92f0d9ab9c7bf2e202e7ff7778daeef85c.zip
Menu: Convert tests to new infrastructure
Ref #10119 Ref gh-1528
Diffstat (limited to 'tests/unit/menu/menu_common.js')
-rw-r--r--tests/unit/menu/menu_common.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/unit/menu/menu_common.js b/tests/unit/menu/menu_common.js
index 942e9e9f9..0f0a04de8 100644
--- a/tests/unit/menu/menu_common.js
+++ b/tests/unit/menu/menu_common.js
@@ -1,4 +1,9 @@
-TestHelpers.commonWidgetTests( "menu", {
+define( [
+ "lib/common",
+ "ui/menu"
+], function( common ) {
+
+common.testWidget( "menu", {
defaults: {
classes: {},
disabled: false,
@@ -20,3 +25,5 @@ TestHelpers.commonWidgetTests( "menu", {
select: null
}
});
+
+} );