From 25e999ad8f5226fdf6d562b1b85816435e662488 Mon Sep 17 00:00:00 2001 From: Bojan Mihelac Date: Mon, 25 May 2020 13:31:23 +0200 Subject: [PATCH] fix: test command does not run Jest in watch mode 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 bcc53c17f..fc439c069 100755 --- a/src/index.ts +++ b/src/index.ts @@ -485,7 +485,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.