Skip to content

Commit

Permalink
chore: remove duplicated import
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Feb 15, 2022
1 parent 6baf127 commit 4590b9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/jest-worker/src/workers/processChild.ts
Expand Up @@ -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<unknown> = [];
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-worker/src/workers/threadChild.ts
Expand Up @@ -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<unknown> = [];
Expand Down

0 comments on commit 4590b9d

Please sign in to comment.