diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-06 14:27:05 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:26:26 -0400 |
commit | df3e8c4deb07105eb8a387caf27d7a1f9ecdb02c (patch) | |
tree | 5faa8be51309d848f95c9c5064c8152fb71ae12b /tests/unit/progressbar/progressbar_common.js | |
parent | 739f9b3f6382195b6976abeb71fc4b09f75cc4e5 (diff) | |
download | jquery-ui-df3e8c4deb07105eb8a387caf27d7a1f9ecdb02c.tar.gz jquery-ui-df3e8c4deb07105eb8a387caf27d7a1f9ecdb02c.zip |
Progressbar: Convert tests to new infrastructure
Ref #10119
Ref gh-1528
Diffstat (limited to 'tests/unit/progressbar/progressbar_common.js')
-rw-r--r-- | tests/unit/progressbar/progressbar_common.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/unit/progressbar/progressbar_common.js b/tests/unit/progressbar/progressbar_common.js index 0608f09f7..c949f136f 100644 --- a/tests/unit/progressbar/progressbar_common.js +++ b/tests/unit/progressbar/progressbar_common.js @@ -1,4 +1,9 @@ -TestHelpers.commonWidgetTests( "progressbar", { +define( [ + "lib/common", + "ui/progressbar" +], function( common ) { + +common.testWidget( "progressbar", { defaults: { classes: { "ui-progressbar": "ui-corner-all", @@ -15,3 +20,5 @@ TestHelpers.commonWidgetTests( "progressbar", { create: null } }); + +} ); |