diff options
Diffstat (limited to 'tests/unit/progressbar/progressbar_core.js')
-rw-r--r-- | tests/unit/progressbar/progressbar_core.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unit/progressbar/progressbar_core.js b/tests/unit/progressbar/progressbar_core.js index 8f4a138ce..5b9aadc3d 100644 --- a/tests/unit/progressbar/progressbar_core.js +++ b/tests/unit/progressbar/progressbar_core.js @@ -1,3 +1,5 @@ +(function( $ ) { + module( "progressbar: core" ); test( "markup structure", function() { @@ -51,3 +53,5 @@ test( "accessibility", function() { equal( element.attr( "aria-valuemax" ), 150, "aria-valuemax" ); strictEqual( element.attr( "aria-valuenow" ), undefined, "aria-valuenow" ); }); + +}( jQuery ) ); |