diff options
Diffstat (limited to 'tests/unit/datepicker/core.js')
-rw-r--r-- | tests/unit/datepicker/core.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/datepicker/core.js b/tests/unit/datepicker/core.js index 2cc89cd21..2c4b77402 100644 --- a/tests/unit/datepicker/core.js +++ b/tests/unit/datepicker/core.js @@ -2,15 +2,17 @@ define( [ "qunit", "jquery", "lib/common", + "lib/helper", "./helper", "ui/widgets/datepicker", "ui/i18n/datepicker-he" -], function( QUnit, $, common, testHelper ) { +], function( QUnit, $, common, helper, testHelper ) { QUnit.module( "datepicker: core", { beforeEach: function() { $( "body" ).trigger( "focus" ); - } + }, + afterEach: helper.moduleAfterEach } ); common.testJshint( "widgets/datepicker" ); |