From 8b148cea34c1852f6fcf6e94a3758d7a9f46d9b2 Mon Sep 17 00:00:00 2001 From: Bojan Mihelac Date: Sun, 12 Jul 2020 19:06:50 +0200 Subject: [PATCH] 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: https://github.com/jaredpalmer/tsdx/commit/a2e4b782cd71b0f7692768329b27fd189591348f --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 13bcea067..f7b9e2575 100755 --- a/src/index.ts +++ b/src/index.ts @@ -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.