From b6305bec16ada3769fe3b2a14bc96abee3247147 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Fri, 13 Jul 2018 16:23:36 -0300 Subject: [PATCH] Remove jest from watcher config, as it doesnt run well inside --- config/watcher.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/config/watcher.ts b/config/watcher.ts index 9b555d335..f974e4283 100644 --- a/config/watcher.ts +++ b/config/watcher.ts @@ -44,10 +44,6 @@ const config: Config = { paths: [], executor: new LongRunningExecutor("npm run docz -- dev"), }, - runJest: { - paths: [], - executor: new LongRunningExecutor("npm run test"), - }, }, defaultSet: "client", sets: { @@ -59,7 +55,7 @@ const config: Config = { "compileRelayStream", ], docz: ["runDocz", "compileCSSTypes"], - jest: ["runJest", "compileCSSTypes", "compileRelayStream"], + compile: ["compileCSSTypes", "compileRelayStream"], }, };