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.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/unit/progressbar/progressbar_common.js b/tests/unit/progressbar/progressbar_common.js
deleted file mode 100644
index c949f136f..000000000
--- a/tests/unit/progressbar/progressbar_common.js
+++ /dev/null
@@ -1,24 +0,0 @@
-define( [
- "lib/common",
- "ui/progressbar"
-], function( common ) {
-
-common.testWidget( "progressbar", {
- defaults: {
- classes: {
- "ui-progressbar": "ui-corner-all",
- "ui-progressbar-value": "ui-corner-left",
- "ui-progressbar-complete": "ui-corner-right"
- },
- disabled: false,
- max: 100,
- value: 0,
-
- //callbacks
- change: null,
- complete: null,
- create: null
- }
-});
-
-} );