diff options
Diffstat (limited to 'tests/unit/autocomplete/events.js')
-rw-r--r-- | tests/unit/autocomplete/events.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/autocomplete/events.js b/tests/unit/autocomplete/events.js index f02d36dd7..801c2d935 100644 --- a/tests/unit/autocomplete/events.js +++ b/tests/unit/autocomplete/events.js @@ -1,10 +1,11 @@ define( [ "qunit", "jquery", + "lib/helper", "ui/widgets/autocomplete" -], function( QUnit, $ ) { +], function( QUnit, $, helper ) { -QUnit.module( "autocomplete: events" ); +QUnit.module( "autocomplete: events", { afterEach: helper.moduleAfterEach } ); var data = [ "Clojure", "COBOL", "ColdFusion", "Java", "JavaScript", "Scala", "Scheme" ]; |