mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Grunt: Update testswarm task to use more config properties. Already deployed on Jenkins server
This commit is contained in:
parent
a86ed30f0a
commit
0344a390b7
11
grunt.js
11
grunt.js
@ -131,19 +131,20 @@ module.exports = function( grunt ) {
|
||||
|
||||
grunt.registerTask( "testswarm", function( commit, configFile ) {
|
||||
var testswarm = require( "testswarm" ),
|
||||
testUrls = [];
|
||||
testUrls = [],
|
||||
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( "http://swarm.jquery.org/git/jquery/" + commit + "/test/index.html?filter=" + test );
|
||||
testUrls.push( config.testUrl + commit + "/test/index.html?filter=" + test );
|
||||
});
|
||||
testswarm({
|
||||
url: "http://swarm.jquery.org/",
|
||||
url: config.swarmUrl,
|
||||
pollInterval: 10000,
|
||||
timeout: 1000 * 60 * 30,
|
||||
done: this.async()
|
||||
}, {
|
||||
authUsername: "jquery",
|
||||
authToken: grunt.file.readJSON( configFile ).jquery.authToken,
|
||||
authUsername: config.authUsername,
|
||||
authToken: config.authToken,
|
||||
jobName: 'jQuery commit #<a href="https://github.com/jquery/jquery/commit/' + commit + '">' + commit.substr( 0, 10 ) + '</a>',
|
||||
runMax: 4,
|
||||
"runNames[]": tests,
|
||||
|
Loading…
Reference in New Issue
Block a user