diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-06 19:46:15 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:26:27 -0400 |
commit | 8bda52c8d1d681f3afe5827f8eda10475377442f (patch) | |
tree | 2c6d5e310d1741a6224c47e8019859d335062c0c /tests/unit/spinner/spinner_common.js | |
parent | 23a7a113ac61bb12ad6a3775553d5ac1426f82f6 (diff) | |
download | jquery-ui-8bda52c8d1d681f3afe5827f8eda10475377442f.tar.gz jquery-ui-8bda52c8d1d681f3afe5827f8eda10475377442f.zip |
Spinner: Convert tests to new infrastructure
Ref #10119
Ref gh-1528
Diffstat (limited to 'tests/unit/spinner/spinner_common.js')
-rw-r--r-- | tests/unit/spinner/spinner_common.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/unit/spinner/spinner_common.js b/tests/unit/spinner/spinner_common.js index 3eee4f9f0..2c40df76a 100644 --- a/tests/unit/spinner/spinner_common.js +++ b/tests/unit/spinner/spinner_common.js @@ -1,4 +1,9 @@ -TestHelpers.commonWidgetTests( "spinner", { +define( [ + "lib/common", + "ui/spinner" +], function( common ) { + +common.testWidget( "spinner", { defaults: { classes: { "ui-spinner": "ui-corner-all", @@ -26,3 +31,5 @@ TestHelpers.commonWidgetTests( "spinner", { stop: null } }); + +} ); |