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