Skip to content

Commit

Permalink
fix/help: test command no longer runs Jest in watch mode (#734)
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
bmihelac authored Jul 12, 2020
1 parent b91ab47 commit 8b148ce
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 @@ -482,7 +482,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 8b148ce

Please sign in to comment.