aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/droppable_events.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-04-06 20:35:27 -0400
committerScott González <scott.gonzalez@gmail.com>2015-04-09 09:26:28 -0400
commit669e62d61b52a31efc7666bf95d0bfe2df2f839d (patch)
tree2a4836523ac048029499e130fa667da9c163f574 /tests/unit/droppable/droppable_events.js
parenta2da340e0d1b02d243c71b86382e5e624e7211d6 (diff)
downloadjquery-ui-669e62d61b52a31efc7666bf95d0bfe2df2f839d.tar.gz
jquery-ui-669e62d61b52a31efc7666bf95d0bfe2df2f839d.zip
Droppable: Convert tests to new infrastructure
Ref #10119 Ref gh-1528
Diffstat (limited to 'tests/unit/droppable/droppable_events.js')
-rw-r--r--tests/unit/droppable/droppable_events.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/unit/droppable/droppable_events.js b/tests/unit/droppable/droppable_events.js
index 1b205bc97..a60d9292e 100644
--- a/tests/unit/droppable/droppable_events.js
+++ b/tests/unit/droppable/droppable_events.js
@@ -1,4 +1,7 @@
-(function( $ ) {
+define( [
+ "jquery",
+ "ui/droppable"
+], function( $ ) {
module( "droppable: events" );
@@ -58,4 +61,4 @@ test("drop", function() {
});
*/
-})( jQuery );
+} );