diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-06 15:01:13 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:26:27 -0400 |
commit | 94f5c15df97ca975f039788f6220650492d924be (patch) | |
tree | e4a74b9b0c0cb872a7ceb849deec544527e93b21 /tests/unit/tabs/tabs_common.js | |
parent | 31e36e6ae4e1552b9a79595695c13dce4f416d0b (diff) | |
download | jquery-ui-94f5c15df97ca975f039788f6220650492d924be.tar.gz jquery-ui-94f5c15df97ca975f039788f6220650492d924be.zip |
Tabs: Convert tests to new infrastructure
Ref #10119
Ref gh-1528
Diffstat (limited to 'tests/unit/tabs/tabs_common.js')
-rw-r--r-- | tests/unit/tabs/tabs_common.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/unit/tabs/tabs_common.js b/tests/unit/tabs/tabs_common.js index c43d8ff09..d3aa5cd48 100644 --- a/tests/unit/tabs/tabs_common.js +++ b/tests/unit/tabs/tabs_common.js @@ -1,4 +1,9 @@ -TestHelpers.commonWidgetTests( "tabs", { +define( [ + "lib/common", + "ui/tabs" +], function( common ) { + +common.testWidget( "tabs", { defaults: { active: null, classes: { @@ -22,3 +27,5 @@ TestHelpers.commonWidgetTests( "tabs", { load: null } }); + +} ); |