update jest.d.ts by fixing typo

This commit is contained in:
Scott K
2016-02-24 10:38:51 -06:00
parent dade441471
commit 72314845b9
+1 -1
View File
@@ -54,7 +54,7 @@ declare module jest {
toContain(expected: string): boolean;
toBeCloseTo(expected: number, delta: number): boolean;
toBeGreaterThan(expected: number): boolean;
toBeLessThen(expected: number): boolean;
toBeLessThan(expected: number): boolean;
toBeCalled(): boolean;
toBeCalledWith(...args: any[]): boolean;
lastCalledWith(...args: any[]): boolean;