Skip to content

Commit

Permalink
Lowercase CLI argument description asides
Browse files Browse the repository at this point in the history
  • Loading branch information
novemberborn committed Jan 12, 2020
1 parent ac8c852 commit ae948d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/05-command-line.md
Expand Up @@ -25,9 +25,9 @@ Options:
files
--help Show help [boolean]
--concurrency, -c Max number of test files running at the same time
(Default: CPU cores) [number]
(default: CPU cores) [number]
--fail-fast Stop after first test failure [boolean]
--match, -m Only run tests with matching title (Can be repeated)
--match, -m Only run tests with matching title (can be repeated)
[string]
--serial, -s Run tests serially [boolean]
--tap, -t Generate TAP output [boolean]
Expand Down
4 changes: 2 additions & 2 deletions lib/cli.js
Expand Up @@ -22,7 +22,7 @@ const FLAGS = {
concurrency: {
alias: 'c',
coerce: coerceLastValue,
description: 'Max number of test files running at the same time (Default: CPU cores)',
description: 'Max number of test files running at the same time (default: CPU cores)',
type: 'number'
},
'fail-fast': {
Expand All @@ -32,7 +32,7 @@ const FLAGS = {
},
match: {
alias: 'm',
description: 'Only run tests with matching title (Can be repeated)',
description: 'Only run tests with matching title (can be repeated)',
type: 'string'
},
serial: {
Expand Down

0 comments on commit ae948d8

Please sign in to comment.