diff --git a/jest/index.d.ts b/jest/index.d.ts index cf50596d55..d36d5517cc 100644 --- a/jest/index.d.ts +++ b/jest/index.d.ts @@ -134,6 +134,7 @@ declare namespace jest { toHaveBeenCalled(): boolean; toHaveBeenCalledTimes(expected: number): boolean; toHaveBeenCalledWith(...params: any[]): boolean; + toHaveBeenLastCalledWith(...params: any[]): boolean; toMatch(expected: string | RegExp): void; toMatchSnapshot(): void; toThrow(): void;