From 4590b9df449a983115f701d1129c16df41641eda Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Tue, 15 Feb 2022 09:49:05 +0100 Subject: [PATCH] chore: remove duplicated import --- packages/jest-worker/src/workers/processChild.ts | 2 +- packages/jest-worker/src/workers/threadChild.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/jest-worker/src/workers/processChild.ts b/packages/jest-worker/src/workers/processChild.ts index d4d38675a73c..c56a7dd0cbea 100644 --- a/packages/jest-worker/src/workers/processChild.ts +++ b/packages/jest-worker/src/workers/processChild.ts @@ -11,12 +11,12 @@ import { CHILD_MESSAGE_INITIALIZE, ChildMessageCall, ChildMessageInitialize, + FunctionLike, PARENT_MESSAGE_CLIENT_ERROR, PARENT_MESSAGE_ERROR, PARENT_MESSAGE_OK, PARENT_MESSAGE_SETUP_ERROR, } from '../types'; -import type {FunctionLike} from '../types'; let file: string | null = null; let setupArgs: Array = []; diff --git a/packages/jest-worker/src/workers/threadChild.ts b/packages/jest-worker/src/workers/threadChild.ts index 9d7df04a6dda..65bc11160722 100644 --- a/packages/jest-worker/src/workers/threadChild.ts +++ b/packages/jest-worker/src/workers/threadChild.ts @@ -12,12 +12,12 @@ import { CHILD_MESSAGE_INITIALIZE, ChildMessageCall, ChildMessageInitialize, + FunctionLike, PARENT_MESSAGE_CLIENT_ERROR, PARENT_MESSAGE_ERROR, PARENT_MESSAGE_OK, PARENT_MESSAGE_SETUP_ERROR, } from '../types'; -import type {FunctionLike} from '../types'; let file: string | null = null; let setupArgs: Array = [];