diff options
Diffstat (limited to 'tests/unit/autocomplete/options.js')
-rw-r--r-- | tests/unit/autocomplete/options.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/autocomplete/options.js b/tests/unit/autocomplete/options.js index c3f445db1..c4de8d5d3 100644 --- a/tests/unit/autocomplete/options.js +++ b/tests/unit/autocomplete/options.js @@ -1,10 +1,11 @@ define( [ "qunit", "jquery", + "lib/helper", "ui/widgets/autocomplete" -], function( QUnit, $ ) { +], function( QUnit, $, helper ) { -QUnit.module( "autocomplete: options" ); +QUnit.module( "autocomplete: options", { afterEach: helper.moduleAfterEach } ); var data = [ "c++", "java", "php", "coldfusion", "javascript", "asp", "ruby", "python", "c", "scala", "groovy", "haskell", "perl" ]; |