fix: adds --parallel option to help

This commit is contained in:
Nuno Maduro
2023-03-21 21:07:57 +00:00
parent 14dd5cb57b
commit f914f1ad87
2 changed files with 8 additions and 0 deletions

View File

@ -102,6 +102,13 @@ final class Help implements HandlesArguments
'desc' => 'Initialise a standard Pest configuration',
]], ...$content['Configuration']];
$content['Execution'] = [...[
[
'arg' => '--parallel',
'desc' => 'Run tests in parallel',
],
], ...$content['Execution']];
$content['Selection'] = array_merge([
[
'arg' => '--bail',