From: Jörn Zaefferer Date: Wed, 13 Jun 2012 22:33:10 +0000 (+0200) Subject: Grunt: Update testswarm task to use new module filter, reduces duplication when runni... X-Git-Tag: 1.8b1~40 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1ea4fe705207476698e7768036343b2ebe3bb31f;p=jquery.git Grunt: Update testswarm task to use new module filter, reduces duplication when running, should speed things up --- diff --git a/grunt.js b/grunt.js index 6fd4f7d9f..4493e083f 100644 --- a/grunt.js +++ b/grunt.js @@ -135,7 +135,7 @@ module.exports = function( grunt ) { config = grunt.file.readJSON( configFile ).jquery; var tests = "ajax attributes callbacks core css data deferred dimensions effects event manipulation offset queue selector support traversing".split( " " ); tests.forEach(function( test ) { - testUrls.push( config.testUrl + commit + "/test/index.html?filter=" + test ); + testUrls.push( config.testUrl + commit + "/test/index.html?module=" + test ); }); testswarm({ url: config.swarmUrl,