diff options
Diffstat (limited to 'tests/unit/droppable/events.js')
-rw-r--r-- | tests/unit/droppable/events.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/droppable/events.js b/tests/unit/droppable/events.js index 8ccd7c87c..734aee1db 100644 --- a/tests/unit/droppable/events.js +++ b/tests/unit/droppable/events.js @@ -1,10 +1,11 @@ define( [ "qunit", "jquery", + "lib/helper", "ui/widgets/droppable" -], function( QUnit, $ ) { +], function( QUnit, $, helper ) { -QUnit.module( "droppable: events" ); +QUnit.module( "droppable: events", { afterEach: helper.moduleAfterEach } ); QUnit.test( "droppable destruction/recreation on drop event", function( assert ) { assert.expect( 1 ); |