]> source.dussan.org Git - jquery.git/commitdiff
Build: Fix testswarm task, use API correctly
authorJörn Zaefferer <joern.zaefferer@gmail.com>
Wed, 12 Mar 2014 10:08:16 +0000 (11:08 +0100)
committerMichał Gołębiowski <m.goleb@gmail.com>
Wed, 12 Mar 2014 11:24:58 +0000 (12:24 +0100)
(cherry-picked from 22c515c6717efe46685b43215208aa4e5648fbc8)

build/tasks/testswarm.js

index 3b5164212f396322166fafc3c9f68c568ccaf604..fbf030f0c9604a6ba9514bfec9ffb39cc42fd6a5 100644 (file)
@@ -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 );