aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/droppable_common.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/droppable/droppable_common.js')
-rw-r--r--tests/unit/droppable/droppable_common.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/unit/droppable/droppable_common.js b/tests/unit/droppable/droppable_common.js
index 87d3ca1db..ef8e11692 100644
--- a/tests/unit/droppable/droppable_common.js
+++ b/tests/unit/droppable/droppable_common.js
@@ -1,4 +1,9 @@
-TestHelpers.commonWidgetTests( "droppable", {
+define( [
+ "lib/common",
+ "ui/droppable"
+], function( common ) {
+
+common.testWidget( "droppable", {
defaults: {
accept: "*",
addClasses: true,
@@ -17,3 +22,5 @@ TestHelpers.commonWidgetTests( "droppable", {
over: null
}
});
+
+} );