diff options
Diffstat (limited to 'tests/unit/droppable/droppable_common_deprecated.js')
-rw-r--r-- | tests/unit/droppable/droppable_common_deprecated.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/unit/droppable/droppable_common_deprecated.js b/tests/unit/droppable/droppable_common_deprecated.js index bd56aa35f..9d2f6c6b6 100644 --- a/tests/unit/droppable/droppable_common_deprecated.js +++ b/tests/unit/droppable/droppable_common_deprecated.js @@ -1,4 +1,9 @@ -TestHelpers.commonWidgetTests( "droppable", { +define( [ + "lib/common", + "ui/droppable" +], function( common ) { + +common.testWidget( "droppable", { defaults: { accept: "*", activeClass: false, @@ -19,3 +24,5 @@ TestHelpers.commonWidgetTests( "droppable", { over: null } }); + +} ); |