diff options
Diffstat (limited to 'tests/unit/tooltip/core.js')
-rw-r--r-- | tests/unit/tooltip/core.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/unit/tooltip/core.js b/tests/unit/tooltip/core.js index 2de37097a..c50164efa 100644 --- a/tests/unit/tooltip/core.js +++ b/tests/unit/tooltip/core.js @@ -1,10 +1,13 @@ define( [ "qunit", "jquery", + "./helper", "ui/widgets/tooltip" -], function( QUnit, $ ) { +], function( QUnit, $, testHelper ) { -QUnit.module( "tooltip: core" ); +var beforeAfterEach = testHelper.beforeAfterEach; + +QUnit.module( "tooltip: core", beforeAfterEach() ); QUnit.test( "markup structure", function( assert ) { assert.expect( 7 ); |