From 06274277de84cc9e775301bdbf4bde322c54eaf9 Mon Sep 17 00:00:00 2001 From: Fedor Nezhivoi Date: Tue, 20 Dec 2016 14:12:53 +0200 Subject: [PATCH] [jest] add type definition for toHaveBeenLastCalledWith (#13038) --- jest/index.d.ts | 1 + 1 file changed, 1 insertion(+) 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;