Merge pull request #3538 from kurumpa/patch-1

Fixed typo in Matchers.toBeGreaterThan
This commit is contained in:
Masahiro Wakame
2015-01-28 23:56:03 +09:00
+2 -2
View File
@@ -44,7 +44,7 @@ declare module jest {
toMatch(expected: RegExp): boolean;
toContain(expected: string): boolean;
toBeCloseTo(expected: number, delta: number): boolean;
toBeGreaterThen(expected: number): boolean;
toBeGreaterThan(expected: number): boolean;
toBeLessThen(expected: number): boolean;
toBeCalled(): boolean;
toBeCalledWith(...args: any[]): boolean;
@@ -77,4 +77,4 @@ declare module jest {
calls: any[][];
instances: T[];
}
}
}