grunt-parallel-spec-runner
Advanced tools
Comparing version 0.2.6 to 0.3.0
{ | ||
"name": "grunt-parallel-spec-runner", | ||
"version": "0.2.6", | ||
"version": "0.3.0", | ||
"description": "Plugin used to configure and launch multiple spec ", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/RallySoftware/grunt-parallel-spec-runner.git", |
@@ -46,2 +46,6 @@ # grunt-parallel-spec-runner | ||
### Command-Line Options | ||
#### --maxSpecRunners | ||
Type: `Number` | ||
Default: 8 | ||
The maximum number of webdrivers/browsers allowed to run in parallel. | ||
@@ -48,0 +52,0 @@ #### --maxSpecFilesPerRunner |
@@ -328,3 +328,3 @@ /* | ||
keepalive: grunt.option('keepalive') || false, | ||
maxSpecRunners: grunt.option('maxSpecRunners') > 0 ? +grunt.option('maxSpecRunners') : 4, | ||
maxSpecRunners: grunt.option('maxSpecRunners') > 0 ? +grunt.option('maxSpecRunners') : 8, | ||
isolateAllSpecs: grunt.option('isolateAllSpecs') || false | ||
@@ -331,0 +331,0 @@ }); |
212862
107