Tests: Load ui/jquery-1-7.js when testing against jQuery 1.7.x

This commit is contained in:
Scott González 2015-08-31 15:33:02 -04:00
parent e5c3004c8e
commit 9bb9a8bac0

View File

@ -140,6 +140,11 @@ function jqueryUrl() {
}
}
// Load the jQuery 1.7 fixes, if necessary
if ( parseFloat( parseUrl().jquery ) === 1.7 ) {
modules.push( "ui/jquery-1-7" );
}
requireTests( modules, noBackCompat );
} )();