diff options
Diffstat (limited to 'tests/unit/dialog/deprecated.js')
-rw-r--r-- | tests/unit/dialog/deprecated.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/unit/dialog/deprecated.js b/tests/unit/dialog/deprecated.js index 1a6794338..960bf0dc4 100644 --- a/tests/unit/dialog/deprecated.js +++ b/tests/unit/dialog/deprecated.js @@ -1,12 +1,13 @@ define( [ + "qunit", "jquery", "ui/widgets/dialog" -], function( $ ) { +], function( QUnit, $ ) { -module( "dialog (deprecated): options" ); +QUnit.module( "dialog (deprecated): options" ); -test( "dialogClass", function( assert ) { - expect( 5 ); +QUnit.test( "dialogClass", function( assert ) { + assert.expect( 5 ); var element = $( "<div>" ).dialog(), widget = element.dialog( "widget" ); |