diff options
Diffstat (limited to 'tests/unit/checkboxradio/methods.js')
-rw-r--r-- | tests/unit/checkboxradio/methods.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/checkboxradio/methods.js b/tests/unit/checkboxradio/methods.js index 673c93766..bfb30dbce 100644 --- a/tests/unit/checkboxradio/methods.js +++ b/tests/unit/checkboxradio/methods.js @@ -1,10 +1,11 @@ define( [ "qunit", "jquery", + "lib/helper", "ui/widgets/checkboxradio" -], function( QUnit, $ ) { +], function( QUnit, $, helper ) { -QUnit.module( "Checkboxradio: methods" ); +QUnit.module( "Checkboxradio: methods", { afterEach: helper.moduleAfterEach } ); $.each( [ "checkbox", "radio" ], function( index, value ) { QUnit.test( value + ": refresh", function( assert ) { |