diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-06 20:28:55 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:26:27 -0400 |
commit | a2da340e0d1b02d243c71b86382e5e624e7211d6 (patch) | |
tree | 91726ee56f182a1d2bae81b4d9de68291dc8c876 /tests/unit/tooltip/tooltip_options.js | |
parent | 7d4811206f8b64e9bd8eea168a77edf23629659b (diff) | |
download | jquery-ui-a2da340e0d1b02d243c71b86382e5e624e7211d6.tar.gz jquery-ui-a2da340e0d1b02d243c71b86382e5e624e7211d6.zip |
Tooltip: Convert tests to new infrastructure
Ref #10119
Ref gh-1528
Diffstat (limited to 'tests/unit/tooltip/tooltip_options.js')
-rw-r--r-- | tests/unit/tooltip/tooltip_options.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/unit/tooltip/tooltip_options.js b/tests/unit/tooltip/tooltip_options.js index 1d9d6b3f0..d091e3bad 100644 --- a/tests/unit/tooltip/tooltip_options.js +++ b/tests/unit/tooltip/tooltip_options.js @@ -1,4 +1,7 @@ -(function( $ ) { +define( [ + "jquery", + "ui/tooltip" +], function( $ ) { module( "tooltip: options" ); @@ -209,4 +212,4 @@ test( "track and programmatic focus", function() { equal( "inputtitle", $( ".ui-tooltip" ).text() ); }); -}( jQuery ) ); +} ); |