aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/progressbar/progressbar_common.js
diff options
context:
space:
mode:
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
}
});
+
+} );