diff options
Diffstat (limited to 'tests/unit/dialog/methods.js')
-rw-r--r-- | tests/unit/dialog/methods.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/dialog/methods.js b/tests/unit/dialog/methods.js index a3e63ce7a..e289d81a7 100644 --- a/tests/unit/dialog/methods.js +++ b/tests/unit/dialog/methods.js @@ -1,12 +1,14 @@ define( [ "qunit", "jquery", + "lib/helper", "ui/widgets/dialog" -], function( QUnit, $ ) { +], function( QUnit, $, helper ) { QUnit.module( "dialog: methods", { afterEach: function() { $( "body>.ui-dialog" ).remove(); + return helper.moduleAfterEach.apply( this, arguments ); } } ); |