Skip to content

Commit 8b148ce

Browse files
authored
fix/help: test command no longer runs Jest in watch mode (#734)
- test command was changed to not run in watch mode, but help dialog was missed - this fixes/updates the help dialog to the current state of the command similar change ref: a2e4b78
1 parent b91ab47 commit 8b148ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ function setAuthorName(author: string) {
482482
prog
483483
.command('test')
484484
.describe(
485-
'Run jest test runner in watch mode. Passes through all flags directly to Jest'
485+
'Run jest test runner. Passes through all flags directly to Jest'
486486
)
487487
.action(async (opts: { config?: string }) => {
488488
// Do this as the first thing so that any code reading it knows the right env.

0 commit comments

Comments
 (0)