diff options
Diffstat (limited to 'tests/unit/dialog/options.js')
-rw-r--r-- | tests/unit/dialog/options.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/dialog/options.js b/tests/unit/dialog/options.js index 4d8e4f717..078d32f8d 100644 --- a/tests/unit/dialog/options.js +++ b/tests/unit/dialog/options.js @@ -1,13 +1,14 @@ define( [ "qunit", "jquery", + "lib/helper", "./helper", "ui/widgets/dialog", "ui/effects/effect-blind", "ui/effects/effect-explode" -], function( QUnit, $, testHelper ) { +], function( QUnit, $, helper, testHelper ) { -QUnit.module( "dialog: options" ); +QUnit.module( "dialog: options", { afterEach: helper.moduleAfterEach } ); QUnit.test( "appendTo", function( assert ) { assert.expect( 16 ); |