diff options
Diffstat (limited to 'tests/unit/progressbar/core.js')
-rw-r--r-- | tests/unit/progressbar/core.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/progressbar/core.js b/tests/unit/progressbar/core.js index b25032a40..cf9d0aba3 100644 --- a/tests/unit/progressbar/core.js +++ b/tests/unit/progressbar/core.js @@ -1,10 +1,11 @@ define( [ "qunit", "jquery", + "lib/helper", "ui/widgets/progressbar" -], function( QUnit, $ ) { +], function( QUnit, $, helper ) { -QUnit.module( "progressbar: core" ); +QUnit.module( "progressbar: core", { afterEach: helper.moduleAfterEach } ); QUnit.test( "markup structure", function( assert ) { assert.expect( 7 ); |