aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/progressbar/progressbar_core.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/progressbar/progressbar_core.js')
-rw-r--r--tests/unit/progressbar/progressbar_core.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/unit/progressbar/progressbar_core.js b/tests/unit/progressbar/progressbar_core.js
index 60ff31411..05eea9ef7 100644
--- a/tests/unit/progressbar/progressbar_core.js
+++ b/tests/unit/progressbar/progressbar_core.js
@@ -1,4 +1,7 @@
-(function( $ ) {
+define( [
+ "jquery",
+ "ui/progressbar"
+], function( $ ) {
module( "progressbar: core" );
@@ -58,4 +61,4 @@ test( "accessibility", function() {
equal( element.attr( "aria-valuenow" ), null, "aria-valuenow" );
});
-}( jQuery ) );
+} );