diff options
Diffstat (limited to 'tests/unit/widget/core.js')
-rw-r--r-- | tests/unit/widget/core.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/widget/core.js b/tests/unit/widget/core.js index 283b55416..9e69a9253 100644 --- a/tests/unit/widget/core.js +++ b/tests/unit/widget/core.js @@ -2,8 +2,9 @@ define( [ "qunit", "jquery", "lib/common", + "lib/helper", "ui/widget" -], function( QUnit, $, common ) { +], function( QUnit, $, common, helper ) { QUnit.module( "widget factory", { afterEach: function() { @@ -11,6 +12,7 @@ QUnit.module( "widget factory", { delete $.ui.testWidget; delete $.fn.testWidget; } + return helper.moduleAfterEach.apply( this, arguments ); } } ); |