diff options
Diffstat (limited to 'tests/unit/menu/options.js')
-rw-r--r-- | tests/unit/menu/options.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/menu/options.js b/tests/unit/menu/options.js index 8479b719c..525c6f016 100644 --- a/tests/unit/menu/options.js +++ b/tests/unit/menu/options.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: options", { beforeEach: function() { testHelper.clearLog(); - } + }, + afterEach: helper.moduleAfterEach } ); QUnit.test( "{ disabled: true }", function( assert ) { |