From 9fad37d3b6a7f2b9172dddca27de2ed2568765b3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=CC=88rn=20Zaefferer?= Date: Wed, 12 Mar 2014 11:03:51 +0100 Subject: [PATCH] Build: Fix testswarm task, use API correctly --- build/tasks/testswarm.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js index 78cba98f8..a147b8f57 100644 --- a/build/tasks/testswarm.js +++ b/build/tasks/testswarm.js @@ -51,8 +51,6 @@ function submit( commit, runs, configFile, extra, done ) { testswarm.createClient({ url: config.swarmUrl, - pollInterval: 10000, - timeout: 1000 * 60 * 45 }) .addReporter( testswarm.reporters.cli ) .auth({ @@ -63,7 +61,8 @@ function submit( commit, runs, configFile, extra, done ) { name: "Commit " + commit.substr( 0, 10 ) + "" + extra, runs: runs, runMax: config.runMax, - browserSets: [ "popular-ui" ] + browserSets: [ "popular-ui" ], + timeout: 1000 * 60 * 30 }, function( error, passed ) { if ( error ) { grunt.log.error( error ); -- 2.39.5