Build: Fix testswarm task, use API correctly

This commit is contained in:
Jörn Zaefferer 2014-03-12 11:08:16 +01:00
parent a81dbc4ed8
commit 22c515c671

View File

@ -23,10 +23,8 @@ module.exports = function( grunt ) {
runs[ test ] = config.testUrl + commit + "/test/index.html?module=" + test; runs[ test ] = config.testUrl + commit + "/test/index.html?module=" + test;
}); });
testswarm.createClient( { testswarm.createClient({
url: config.swarmUrl, url: config.swarmUrl
pollInterval: 10000,
timeout: timeout || 1000 * 60 * 30
} ) } )
.addReporter( testswarm.reporters.cli ) .addReporter( testswarm.reporters.cli )
.auth( { .auth( {
@ -38,7 +36,8 @@ module.exports = function( grunt ) {
name: jobName, name: jobName,
runs: runs, runs: runs,
runMax: config.runMax, runMax: config.runMax,
browserSets: browserSets || [ "popular-no-old-ie", "ios" ] browserSets: browserSets || [ "popular-no-old-ie", "ios" ],
timeout: timeout || 1000 * 60 * 30
}, function( err, passed ) { }, function( err, passed ) {
if ( err ) { if ( err ) {
grunt.log.error( err ); grunt.log.error( err );