diff options
Diffstat (limited to 'tests/unit/effects/scale.js')
-rw-r--r-- | tests/unit/effects/scale.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/effects/scale.js b/tests/unit/effects/scale.js index 44a59234b..c6b0c9aa3 100644 --- a/tests/unit/effects/scale.js +++ b/tests/unit/effects/scale.js @@ -1,10 +1,11 @@ define( [ "qunit", "jquery", + "lib/helper", "ui/effects/effect-scale" -], function( QUnit, $ ) { +], function( QUnit, $, helper ) { -QUnit.module( "effect.scale: Scale" ); +QUnit.module( "effect.scale: Scale", { afterEach: helper.moduleAfterEach } ); function run( position, v, h, vo, ho ) { var desc = "End Position Correct: " + position + " (" + v + "," + h + ") - origin: (" + vo + "," + ho + ")"; |