diff options
Diffstat (limited to 'tests/unit/dialog/dialog_common.js')
-rw-r--r-- | tests/unit/dialog/dialog_common.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/unit/dialog/dialog_common.js b/tests/unit/dialog/dialog_common.js index fc5105d74..389b2ddff 100644 --- a/tests/unit/dialog/dialog_common.js +++ b/tests/unit/dialog/dialog_common.js @@ -1,4 +1,9 @@ -TestHelpers.commonWidgetTests( "dialog", { +define( [ + "lib/common", + "ui/dialog" +], function( common ) { + +common.testWidget( "dialog", { defaults: { appendTo: "body", autoOpen: true, @@ -44,3 +49,5 @@ TestHelpers.commonWidgetTests( "dialog", { resizeStop: null } }); + +} ); |