mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
module.exports = function( grunt ) {
|
|
|
|
"use strict";
|
|
|
|
grunt.registerTask( "testswarm", function( commit, configFile, browserSets, timeout ) {
|
|
var jobName,
|
|
testswarm = require( "testswarm" ),
|
|
runs = {},
|
|
done = this.async(),
|
|
pull = /PR-(\d+)/.exec( commit ),
|
|
config = grunt.file.readJSON( configFile ).jquery,
|
|
tests = grunt.config([ this.name, "tests" ]);
|
|
|
|
if ( pull ) {
|
|
jobName = "Pull <a href='https://github.com/jquery/jquery/pull/" +
|
|
pull[ 1 ] + "'>#" + pull[ 1 ] + "</a>";
|
|
} else {
|
|
jobName = "Commit <a href='https://github.com/jquery/jquery/commit/" +
|
|
commit + "'>" + commit.substr( 0, 10 ) + "</a>";
|
|
}
|
|
|
|
tests.forEach(function( test ) {
|
|
runs[ test ] = config.testUrl + commit + "/test/index.html?module=" + test;
|
|
});
|
|
|
|
testswarm.createClient({
|
|
url: config.swarmUrl
|
|
} )
|
|
.addReporter( testswarm.reporters.cli )
|
|
.auth( {
|
|
id: config.authUsername,
|
|
token: config.authToken
|
|
})
|
|
.addjob(
|
|
{
|
|
name: jobName,
|
|
runs: runs,
|
|
runMax: config.runMax,
|
|
browserSets: browserSets || [ "popular-no-old-ie", "ios" ],
|
|
timeout: timeout || 1000 * 60 * 30
|
|
}, function( err, passed ) {
|
|
if ( err ) {
|
|
grunt.log.error( err );
|
|
}
|
|
done( passed );
|
|
}
|
|
);
|
|
});
|
|
};
|