diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-06 10:13:15 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:24:45 -0400 |
commit | f908a7793bf9e06f3e23d15028baf2e90e92baaa (patch) | |
tree | b9e837d84ddee6fc29e0876a124c099e8703c127 /tests/unit/button/button_events.js | |
parent | aff3c32ee1f0b81ecea613057e95a40d8edc6b03 (diff) | |
download | jquery-ui-f908a7793bf9e06f3e23d15028baf2e90e92baaa.tar.gz jquery-ui-f908a7793bf9e06f3e23d15028baf2e90e92baaa.zip |
Button: Convert tests to new infrastructure
Ref #10119
Ref gh-1528
Diffstat (limited to 'tests/unit/button/button_events.js')
-rw-r--r-- | tests/unit/button/button_events.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/unit/button/button_events.js b/tests/unit/button/button_events.js index 2a8bb7727..ec930077c 100644 --- a/tests/unit/button/button_events.js +++ b/tests/unit/button/button_events.js @@ -1,7 +1,7 @@ -/* - * button_events.js - */ -(function($) { +define( [ + "jquery", + "ui/button" +], function( $ ) { module("button: events"); @@ -33,4 +33,4 @@ asyncTest( "when button loses focus, ensure active state is removed (#8559)", fu }); }); -})(jQuery); +} ); |