aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/resizable/resizable_common.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/resizable/resizable_common.js')
-rw-r--r--tests/unit/resizable/resizable_common.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/unit/resizable/resizable_common.js b/tests/unit/resizable/resizable_common.js
index c3255ff91..822a4db87 100644
--- a/tests/unit/resizable/resizable_common.js
+++ b/tests/unit/resizable/resizable_common.js
@@ -1,4 +1,9 @@
-TestHelpers.commonWidgetTests( "resizable", {
+define( [
+ "lib/common",
+ "ui/resizable"
+], function( common ) {
+
+common.testWidget( "resizable", {
defaults: {
alsoResize: false,
animate: false,
@@ -31,3 +36,5 @@ TestHelpers.commonWidgetTests( "resizable", {
stop: null
}
});
+
+} );