diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-03-12 11:08:16 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-03-12 11:08:16 +0100 |
commit | 22c515c6717efe46685b43215208aa4e5648fbc8 (patch) | |
tree | f85ab180a9dddc2cfe819ecefaf4dabd7ac7da3c /build | |
parent | a81dbc4ed82bc38b1ac5f6a8242e044232ea1594 (diff) | |
download | jquery-22c515c6717efe46685b43215208aa4e5648fbc8.tar.gz jquery-22c515c6717efe46685b43215208aa4e5648fbc8.zip |
Build: Fix testswarm task, use API correctly
Diffstat (limited to 'build')
-rw-r--r-- | build/tasks/testswarm.js | 9 |
1 files changed, 4 insertions, 5 deletions
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 ); |