diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-06 20:23:50 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:26:27 -0400 |
commit | 7d4811206f8b64e9bd8eea168a77edf23629659b (patch) | |
tree | b22edbe4117b692ced3f803fd5192c046229e56e /tests/unit/dialog/dialog_core.js | |
parent | 0714f55ad48c9d3dace29003677353f5e152a13a (diff) | |
download | jquery-ui-7d4811206f8b64e9bd8eea168a77edf23629659b.tar.gz jquery-ui-7d4811206f8b64e9bd8eea168a77edf23629659b.zip |
Dialog: Convert tests to new infrastructure
Ref #10119
Ref gh-1528
Diffstat (limited to 'tests/unit/dialog/dialog_core.js')
-rw-r--r-- | tests/unit/dialog/dialog_core.js | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/unit/dialog/dialog_core.js b/tests/unit/dialog/dialog_core.js index 73d24fed0..cb086ce8d 100644 --- a/tests/unit/dialog/dialog_core.js +++ b/tests/unit/dialog/dialog_core.js @@ -1,8 +1,7 @@ -/* - * dialog_core.js - */ - -(function($) { +define( [ + "jquery", + "ui/dialog" +], function( $ ) { // TODO add teardown callback to remove dialogs module("dialog: core"); @@ -306,4 +305,4 @@ asyncTest( "interaction between overlay and other dialogs", function() { }); }); -})(jQuery); +} ); |