aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/progressbar/progressbar_options.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-04-06 14:27:05 -0400
committerScott González <scott.gonzalez@gmail.com>2015-04-09 09:26:26 -0400
commitdf3e8c4deb07105eb8a387caf27d7a1f9ecdb02c (patch)
tree5faa8be51309d848f95c9c5064c8152fb71ae12b /tests/unit/progressbar/progressbar_options.js
parent739f9b3f6382195b6976abeb71fc4b09f75cc4e5 (diff)
downloadjquery-ui-df3e8c4deb07105eb8a387caf27d7a1f9ecdb02c.tar.gz
jquery-ui-df3e8c4deb07105eb8a387caf27d7a1f9ecdb02c.zip
Progressbar: Convert tests to new infrastructure
Ref #10119 Ref gh-1528
Diffstat (limited to 'tests/unit/progressbar/progressbar_options.js')
-rw-r--r--tests/unit/progressbar/progressbar_options.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/unit/progressbar/progressbar_options.js b/tests/unit/progressbar/progressbar_options.js
index 739c97bd9..7b6ac9db2 100644
--- a/tests/unit/progressbar/progressbar_options.js
+++ b/tests/unit/progressbar/progressbar_options.js
@@ -1,4 +1,7 @@
-(function( $ ) {
+define( [
+ "jquery",
+ "ui/progressbar"
+], function( $ ) {
module( "progressbar: options" );
@@ -73,4 +76,4 @@ test( "change max below value", function() {
"value constrained at max" );
});
-}( jQuery ) );
+} );