diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-06 13:04:04 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:26:26 -0400 |
commit | f2ca8f92f0d9ab9c7bf2e202e7ff7778daeef85c (patch) | |
tree | 790023b094bbf4890f4d552b3a75ccc1177fda5b /tests/unit/menu/menu_common.js | |
parent | a0e3da0459e4fbbde99dfa5f41929fdc82dfde1e (diff) | |
download | jquery-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.js | 9 |
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 } }); + +} ); |