aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/progressbar/progressbar_common.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-04-06 14:27:05 -0400
committerScott González <scott.gonzalez@gmail.com>2015-04-09 09:26:26 -0400
commitdf3e8c4deb07105eb8a387caf27d7a1f9ecdb02c (patch)
tree5faa8be51309d848f95c9c5064c8152fb71ae12b /tests/unit/progressbar/progressbar_common.js
parent739f9b3f6382195b6976abeb71fc4b09f75cc4e5 (diff)
downloadjquery-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.js9
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
}
});
+
+} );