"use strict";
- grunt.registerTask( "testswarm", function( commit, configFile, projectName ) {
+ grunt.registerTask( "testswarm", function( commit, configFile, projectName, browserSets,
+ timeout ) {
var jobName, config, tests,
testswarm = require( "testswarm" ),
runs = {},
projectName = projectName || "jquery";
config = grunt.file.readJSON( configFile )[ projectName ];
+ browserSets = browserSets || config.browserSets;
+ if ( browserSets[ 0 ] === "[" ) {
+ // We got an array, parse it
+ browserSets = JSON.parse( browserSets );
+ }
+ timeout = timeout || 1000 * 60 * 30;
tests = grunt.config([ this.name, "tests" ]);
if ( pull ) {
name: jobName,
runs: runs,
runMax: config.runMax,
- browserSets: projectName === "jqueryweekly" ?
- "weekly" :
- [ "popular", "ios" ],
- timeout: projectName === "jqueryweekly" ? 1000 * 60 * 60 : 1000 * 60 * 30
+ browserSets: browserSets,
+ timeout: timeout
}, function( err, passed ) {
if ( err ) {
grunt.log.error( err );