From 43c6663676c3278a8f949c68c2130e727ac13d1f Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Thu, 14 Jun 2012 00:24:51 +0200 Subject: [PATCH] Grunt: Update testswarm task to use more config props --- build/tasks/testswarm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js index bb1adc371..421e8944f 100644 --- a/build/tasks/testswarm.js +++ b/build/tasks/testswarm.js @@ -4,7 +4,7 @@ grunt.registerTask( "testswarm", function( commit, configFile ) { var test, testswarm = require( "testswarm" ), config = grunt.file.readJSON( configFile ).jqueryui, - testBase = "http://swarm.jquery.org/git/jquery-ui/" + commit + "/tests/unit/", + testBase = config.testUrl + commit + "/tests/unit/", testUrls = [], tests = { "Accordion": "accordion/accordion.html", @@ -35,7 +35,7 @@ grunt.registerTask( "testswarm", function( commit, configFile ) { testUrls.push( testBase + tests[ test ] + "?nojshint=true" ); } testswarm({ - url: "http://swarm.jquery.org/", + url: config.swarmUrl, pollInterval: 10000, timeout: 1000 * 60 * 30, done: this.async() -- 2.39.5