Merge pull request #1404 from mohamedmansour/patch-1

Fix bug where waitsFor has an optional failureMessage
This commit is contained in:
Masahiro Wakame
2013-12-07 06:24:46 -08:00

View File

@@ -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 {