mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-16 06:50:19 +00:00
Merge pull request #1404 from mohamedmansour/patch-1
Fix bug where waitsFor has an optional failureMessage
This commit is contained in:
Vendored
+1
-1
@@ -21,7 +21,7 @@ declare function expect(actual: any): jasmine.Matchers;
|
||||
declare function spyOn(object: any, method: string): jasmine.Spy;
|
||||
|
||||
declare function runs(asyncMethod: Function): void;
|
||||
declare function waitsFor(latchMethod: () => boolean, failureMessage: string, timeout?: number): void;
|
||||
declare function waitsFor(latchMethod: () => boolean, failureMessage?: string, timeout?: number): void;
|
||||
declare function waits(timeout?: number): void;
|
||||
|
||||
declare module jasmine {
|
||||
|
||||
Reference in New Issue
Block a user