From 26c98c8a9530c44f8c801ccc3b2057e2101187ee Mon Sep 17 00:00:00 2001 From: Felipe Andrade Date: Wed, 6 Jan 2016 11:28:40 -0500 Subject: [PATCH] added toHaveBeenCalledTimes --- jasmine/jasmine.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/jasmine/jasmine.d.ts b/jasmine/jasmine.d.ts index 46a1937f43..b17c68d8b5 100644 --- a/jasmine/jasmine.d.ts +++ b/jasmine/jasmine.d.ts @@ -290,6 +290,7 @@ declare module jasmine { toBeFalsy(expectationFailOutput?: any): boolean; toHaveBeenCalled(): boolean; toHaveBeenCalledWith(...params: any[]): boolean; + toHaveBeenCalledTimes(expected: number): boolean; toContain(expected: any, expectationFailOutput?: any): boolean; toBeLessThan(expected: number, expectationFailOutput?: any): boolean; toBeGreaterThan(expected: number, expectationFailOutput?: any): boolean;