diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-06 20:35:27 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:26:28 -0400 |
commit | 669e62d61b52a31efc7666bf95d0bfe2df2f839d (patch) | |
tree | 2a4836523ac048029499e130fa667da9c163f574 /tests/unit/droppable/droppable_events.js | |
parent | a2da340e0d1b02d243c71b86382e5e624e7211d6 (diff) | |
download | jquery-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.js | 7 |
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 ); +} ); |