diff --git a/packages/jest-mock/src/index.ts b/packages/jest-mock/src/index.ts index 50f95009035d..b741f7b0b4ba 100644 --- a/packages/jest-mock/src/index.ts +++ b/packages/jest-mock/src/index.ts @@ -255,7 +255,6 @@ type MockFunctionState = { type MockFunctionConfig = { mockImpl: Function | undefined; mockName: string; - specificReturnValues: Array; specificMockImpls: Array; }; @@ -599,7 +598,6 @@ export class ModuleMocker { mockImpl: undefined, mockName: 'jest.fn()', specificMockImpls: [], - specificReturnValues: [], }; }