diff options
Diffstat (limited to 'tests/unit/button/events.js')
-rw-r--r-- | tests/unit/button/events.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/button/events.js b/tests/unit/button/events.js index e8b5e01d6..577407361 100644 --- a/tests/unit/button/events.js +++ b/tests/unit/button/events.js @@ -1,10 +1,11 @@ define( [ "qunit", "jquery", + "lib/helper", "ui/widgets/button" -], function( QUnit, $ ) { +], function( QUnit, $, helper ) { -QUnit.module( "Button: events" ); +QUnit.module( "Button: events", { afterEach: helper.moduleAfterEach } ); QUnit.test( "Anchor recieves click event when spacebar is pressed", function( assert ) { var ready = assert.async(); |