From 34cc22e9a5cc6246b29363ea4e4992dd0a4f5f37 Mon Sep 17 00:00:00 2001 From: Kenrick Date: Thu, 5 Sep 2019 18:20:16 +0800 Subject: [PATCH] Fix CI error due to type check --- packages/jest-core/src/cli/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/jest-core/src/cli/index.ts b/packages/jest-core/src/cli/index.ts index f67e046dd3aa..47eb1b9c2bd2 100644 --- a/packages/jest-core/src/cli/index.ts +++ b/packages/jest-core/src/cli/index.ts @@ -34,7 +34,7 @@ type OnCompleteCallback = (results: AggregatedResult) => void; export const runCLI = async ( argv: Config.Argv, projects: Array, - isGlobalProject, + isGlobalProject: boolean, ): Promise<{ results: AggregatedResult; globalConfig: Config.GlobalConfig;