Skip to content

Commit

Permalink
fix/help: test command no longer runs Jest in watch mode (jaredpalmer…
Browse files Browse the repository at this point in the history
…#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: jaredpalmer@a2e4b78
  • Loading branch information
bmihelac authored and paul-vd committed Dec 1, 2020
1 parent 783a427 commit 9392e10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ function setAuthorName(author: string) {
prog
.command('test')
.describe(
'Run jest test runner in watch mode. Passes through all flags directly to Jest'
'Run jest test runner. Passes through all flags directly to Jest'
)
.action(async (opts: { config?: string }) => {
// Do this as the first thing so that any code reading it knows the right env.
Expand Down

0 comments on commit 9392e10

Please sign in to comment.