blob: bcea24f12737504f545e22a95026a2b8e011c22c [file] [log] [blame]
// Abbreviated Jasmine types for testing purposes
declare function describe(
description: string, specDefinitions: () => void): void;
declare function it(
expectation: string, assertion?: (done: Function) => void,
timeout?: number): void;
declare function expect(actual: any): Matchers;
interface Matchers {
toBeTruthy(expectationFailOutput?: any): boolean;
toBeFalsy(expectationFailOutput?: any): boolean;
not: Matchers;
}