diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-06 15:07:04 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:26:27 -0400 |
commit | 23a7a113ac61bb12ad6a3775553d5ac1426f82f6 (patch) | |
tree | 133d0d9b4d73f43e77c40f51e13efc4439b38c0c /tests/unit/widget/widget_animation.js | |
parent | 94f5c15df97ca975f039788f6220650492d924be (diff) | |
download | jquery-ui-23a7a113ac61bb12ad6a3775553d5ac1426f82f6.tar.gz jquery-ui-23a7a113ac61bb12ad6a3775553d5ac1426f82f6.zip |
Widget: Convert tests to new infrastructure
Ref #10119
Ref gh-1528
Diffstat (limited to 'tests/unit/widget/widget_animation.js')
-rw-r--r-- | tests/unit/widget/widget_animation.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/unit/widget/widget_animation.js b/tests/unit/widget/widget_animation.js index 8ef55aa11..4e9d93ccf 100644 --- a/tests/unit/widget/widget_animation.js +++ b/tests/unit/widget/widget_animation.js @@ -1,3 +1,7 @@ +define( [ + "jquery", + "ui/widget" +], function( $ ) { module( "widget animation", (function() { var show = $.fn.show, @@ -255,3 +259,5 @@ asyncTest( "show: object(effect)", function() { next(); }); }); + +} ); |