From: Jörn Zaefferer Date: Wed, 12 Mar 2014 10:08:16 +0000 (+0100) Subject: Build: Fix testswarm task, use API correctly X-Git-Tag: 1.11.1-beta1~28 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=59c4adbaffbf2eee167021e549b1f461893d624b;p=jquery.git Build: Fix testswarm task, use API correctly (cherry-picked from 22c515c6717efe46685b43215208aa4e5648fbc8) --- diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js index 3b5164212..fbf030f0c 100644 --- a/build/tasks/testswarm.js +++ b/build/tasks/testswarm.js @@ -23,10 +23,8 @@ module.exports = function( grunt ) { runs[ test ] = config.testUrl + commit + "/test/index.html?module=" + test; }); - testswarm.createClient( { - url: config.swarmUrl, - pollInterval: 10000, - timeout: timeout || 1000 * 60 * 30 + testswarm.createClient({ + url: config.swarmUrl } ) .addReporter( testswarm.reporters.cli ) .auth( { @@ -38,7 +36,8 @@ module.exports = function( grunt ) { name: jobName, runs: runs, runMax: config.runMax, - browserSets: browserSets || [ "popular", "ios" ] + browserSets: browserSets || [ "popular", "ios" ], + timeout: timeout || 1000 * 60 * 30 }, function( err, passed ) { if ( err ) { grunt.log.error( err );