Update grunt.js

- Raise runMax to enable automatic error-margin recovery in TestSwarm

- Turn browserSets into an array (since it is)

- Add "beta" to browserSets (the only difference right now is the inclusion of IE10)
This commit is contained in:
Timo Tijhof 2012-04-30 13:41:27 +02:00 committed by Jörn Zaefferer
parent 7012ba69a8
commit fab4aa13ca

View File

@ -376,10 +376,10 @@ grunt.registerTask( "testswarm", function( commit, authToken ) {
authUsername: "jqueryui",
authToken: authToken,
jobName: 'jQuery UI commit #<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit + '</a>',
runMax: 1,
runMax: 4,
"runNames[]": Object.keys(tests),
"runUrls[]": testUrls,
browserSets: "popular"
"browserSets[]": ["popular", "beta"]
});
});