Merge pull request #7514 from andradf/jasmine_tohavebeencalledtimes

added toHaveBeenCalledTimes
This commit is contained in:
Masahiro Wakame
2016-01-11 22:05:02 +09:00

View File

@@ -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;