Tests: Add jQuery 1.6.2 to testswarm-multi-jquery grunt task.

This commit is contained in:
Scott González 2012-07-09 12:57:28 -04:00
parent 1991a9073d
commit 0fc3afb2a1

View File

@ -63,7 +63,7 @@ grunt.registerTask( "testswarm", function( commit, configFile ) {
grunt.registerTask( "testswarm-multi-jquery", function( commit, configFile ) {
var allTests = {};
"1.6 1.6.1 1.6.3 1.6.4 1.7 1.7.1 1.7.2 git".split(" ").forEach(function( version ) {
"1.6 1.6.1 1.6.2 1.6.3 1.6.4 1.7 1.7.1 1.7.2 git".split(" ").forEach(function( version ) {
for ( var test in tests ) {
allTests[ test + "-" + version ] = tests[ test ] + "?nojshint=true&jquery=" + version;
}