Fixed typo in Matchers.toBeGreaterThan

This commit is contained in:
Kirill
2015-01-26 14:28:24 +02:00
parent ceafc9969c
commit 8530097130

4
jest/jest.d.ts vendored
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[];
}
}
}