Skip to content

Commit ae948d8

Browse files
committed
Lowercase CLI argument description asides
1 parent ac8c852 commit ae948d8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/05-command-line.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ Options:
2525
files
2626
--help Show help [boolean]
2727
--concurrency, -c Max number of test files running at the same time
28-
(Default: CPU cores) [number]
28+
(default: CPU cores) [number]
2929
--fail-fast Stop after first test failure [boolean]
30-
--match, -m Only run tests with matching title (Can be repeated)
30+
--match, -m Only run tests with matching title (can be repeated)
3131
[string]
3232
--serial, -s Run tests serially [boolean]
3333
--tap, -t Generate TAP output [boolean]

lib/cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const FLAGS = {
2222
concurrency: {
2323
alias: 'c',
2424
coerce: coerceLastValue,
25-
description: 'Max number of test files running at the same time (Default: CPU cores)',
25+
description: 'Max number of test files running at the same time (default: CPU cores)',
2626
type: 'number'
2727
},
2828
'fail-fast': {
@@ -32,7 +32,7 @@ const FLAGS = {
3232
},
3333
match: {
3434
alias: 'm',
35-
description: 'Only run tests with matching title (Can be repeated)',
35+
description: 'Only run tests with matching title (can be repeated)',
3636
type: 'string'
3737
},
3838
serial: {

0 commit comments

Comments
 (0)