diff options
Diffstat (limited to 'tests/unit/progressbar/progressbar_options.js')
-rw-r--r-- | tests/unit/progressbar/progressbar_options.js | 4 |
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 ) ); |