diff options
Diffstat (limited to 'tests/unit/core/core.js')
-rw-r--r-- | tests/unit/core/core.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/core/core.js b/tests/unit/core/core.js index acfc291ff..94c126123 100644 --- a/tests/unit/core/core.js +++ b/tests/unit/core/core.js @@ -2,12 +2,13 @@ define( [ "qunit", "jquery", "lib/common", + "lib/helper", "ui/form", "ui/labels", "ui/unique-id" -], function( QUnit, $, common ) { +], function( QUnit, $, common, helper ) { -QUnit.module( "core - jQuery extensions" ); +QUnit.module( "core - jQuery extensions", { afterEach: helper.moduleAfterEach } ); common.testJshint( "core" ); |