diff options
Diffstat (limited to 'tests/unit/menu/methods.js')
-rw-r--r-- | tests/unit/menu/methods.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/menu/methods.js b/tests/unit/menu/methods.js index e0e942dd6..a5e5a90e3 100644 --- a/tests/unit/menu/methods.js +++ b/tests/unit/menu/methods.js @@ -1,9 +1,10 @@ define( [ "qunit", "jquery", + "lib/helper", "./helper", "ui/widgets/menu" -], function( QUnit, $, testHelper ) { +], function( QUnit, $, helper, testHelper ) { var log = testHelper.log, logOutput = testHelper.logOutput, @@ -12,7 +13,8 @@ var log = testHelper.log, QUnit.module( "menu: methods", { beforeEach: function() { testHelper.clearLog(); - } + }, + afterEach: helper.moduleAfterEach } ); QUnit.test( "destroy", function( assert ) { |