mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
Fixed typo in Matchers.toBeGreaterThan
This commit is contained in:
4
jest/jest.d.ts
vendored
4
jest/jest.d.ts
vendored
@@ -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[];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user