diff options
Diffstat (limited to 'tests/unit/button/core.js')
-rw-r--r-- | tests/unit/button/core.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/button/core.js b/tests/unit/button/core.js index 98219c66c..d5d19f953 100644 --- a/tests/unit/button/core.js +++ b/tests/unit/button/core.js @@ -1,11 +1,12 @@ define( [ "qunit", "jquery", + "lib/helper", "ui/safe-active-element", "ui/widgets/button" -], function( QUnit, $ ) { +], function( QUnit, $, helper ) { -QUnit.module( "Button: core" ); +QUnit.module( "Button: core", { afterEach: helper.moduleAfterEach } ); QUnit.test( "Disabled button loses focus", function( assert ) { var ready = assert.async(); |