Skip to content

Commit d97b760

Browse files
authored
refactor(jest-mock): remove unused specificReturnValues property (#13889)
1 parent 94b73a2 commit d97b760

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/jest-mock/src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,6 @@ type MockFunctionState<T extends FunctionLike = UnknownFunction> = {
255255
type MockFunctionConfig = {
256256
mockImpl: Function | undefined;
257257
mockName: string;
258-
specificReturnValues: Array<unknown>;
259258
specificMockImpls: Array<Function>;
260259
};
261260

@@ -599,7 +598,6 @@ export class ModuleMocker {
599598
mockImpl: undefined,
600599
mockName: 'jest.fn()',
601600
specificMockImpls: [],
602-
specificReturnValues: [],
603601
};
604602
}
605603

0 commit comments

Comments
 (0)