mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Build: Make it possible to change browserSets in the testswarm task
This commit is contained in:
parent
0c12cb3910
commit
14872941f9
@ -2,7 +2,7 @@ module.exports = function( grunt ) {
|
|||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
grunt.registerTask( "testswarm", function( commit, configFile ) {
|
grunt.registerTask( "testswarm", function( commit, configFile, browserSets ) {
|
||||||
var jobName,
|
var jobName,
|
||||||
testswarm = require( "testswarm" ),
|
testswarm = require( "testswarm" ),
|
||||||
runs = {},
|
runs = {},
|
||||||
@ -11,6 +11,10 @@ module.exports = function( grunt ) {
|
|||||||
config = grunt.file.readJSON( configFile ).jquery,
|
config = grunt.file.readJSON( configFile ).jquery,
|
||||||
tests = grunt.config([ this.name, "tests" ]);
|
tests = grunt.config([ this.name, "tests" ]);
|
||||||
|
|
||||||
|
if ( !browserSets ) {
|
||||||
|
browserSets = [ "popular-no-old-ie", "ios" ];
|
||||||
|
}
|
||||||
|
|
||||||
if ( pull ) {
|
if ( pull ) {
|
||||||
jobName = "Pull <a href='https://github.com/jquery/jquery/pull/" +
|
jobName = "Pull <a href='https://github.com/jquery/jquery/pull/" +
|
||||||
pull[ 1 ] + "'>#" + pull[ 1 ] + "</a>";
|
pull[ 1 ] + "'>#" + pull[ 1 ] + "</a>";
|
||||||
@ -38,7 +42,7 @@ module.exports = function( grunt ) {
|
|||||||
name: jobName,
|
name: jobName,
|
||||||
runs: runs,
|
runs: runs,
|
||||||
runMax: config.runMax,
|
runMax: config.runMax,
|
||||||
browserSets: [ "popular-no-old-ie", "ios" ]
|
browserSets: browserSets
|
||||||
}, function( err, passed ) {
|
}, function( err, passed ) {
|
||||||
if ( err ) {
|
if ( err ) {
|
||||||
grunt.log.error( err );
|
grunt.log.error( err );
|
||||||
|
Loading…
Reference in New Issue
Block a user