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: 2.1.1-beta1~29 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=22c515c6717efe46685b43215208aa4e5648fbc8;p=jquery.git Build: Fix testswarm task, use API correctly --- diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js index 135a3cc7e..3de7a089b 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-no-old-ie", "ios" ] + browserSets: browserSets || [ "popular-no-old-ie", "ios" ], + timeout: timeout || 1000 * 60 * 30 }, function( err, passed ) { if ( err ) { grunt.log.error( err );