aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/progressbar/progressbar_options.js
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2015-01-25 15:39:06 +0100
committerJörn Zaefferer <joern.zaefferer@gmail.com>2015-03-06 16:27:46 +0100
commit9a28197f8934ee070f3bd1c392b0b2cca5eb95eb (patch)
treefd27513834ea207469bd7c9db0502229c0a1313a /tests/unit/progressbar/progressbar_options.js
parent60c00cd4ecdab41f44e125efe2679223e9cd5535 (diff)
downloadjquery-ui-9a28197f8934ee070f3bd1c392b0b2cca5eb95eb.tar.gz
jquery-ui-9a28197f8934ee070f3bd1c392b0b2cca5eb95eb.zip
Tests: Fix missing wrappers in progressbar tests
Diffstat (limited to 'tests/unit/progressbar/progressbar_options.js')
-rw-r--r--tests/unit/progressbar/progressbar_options.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unit/progressbar/progressbar_options.js b/tests/unit/progressbar/progressbar_options.js
index bc0b5d00d..739c97bd9 100644
--- a/tests/unit/progressbar/progressbar_options.js
+++ b/tests/unit/progressbar/progressbar_options.js
@@ -1,3 +1,5 @@
+(function( $ ) {
+
module( "progressbar: options" );
test( "{ value: 0 }, default", function() {
@@ -70,3 +72,5 @@ test( "change max below value", function() {
equal( $( "#progressbar" ).progressbar( "value" ), 5,
"value constrained at max" );
});
+
+}( jQuery ) );