Created
July 31, 2018 15:42
-
-
Save adamrecsko/36bf9e6502691c24c3f106d5d36190f2 to your computer and use it in GitHub Desktop.
jasmine index d ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Type definitions for jasminewd2 2.0 | |
// Project: https://github.com/angular/jasminewd | |
// Definitions by: Sammy Jelin <https://github.com/sjelin> | |
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | |
// TypeScript Version: 2.1 | |
/// <reference types="jasmine" /> | |
declare function it(expectation: string, assertion?: () => Promise<void>, timeout?: number): void; | |
declare function fit(expectation: string, assertion?: () => Promise<void>, timeout?: number): void; | |
declare function xit(expectation: string, assertion?: () => Promise<void>, timeout?: number): void; | |
declare function beforeEach(action: () => Promise<void>, timeout?: number): void; | |
declare function afterEach(action: () => Promise<void>, timeout?: number): void; | |
declare function beforeAll(action: () => Promise<void>, timeout?: number): void; | |
declare function afterAll(action: () => Promise<void>, timeout?: number): void; | |
declare namespace jasmine { | |
interface Matchers<T> { | |
toBe(expected: any, expectationFailOutput?: any): Promise<void>; | |
toEqual(expected: any, expectationFailOutput?: any): Promise<void>; | |
toMatch(expected: string | RegExp | Promise<string | RegExp>, expectationFailOutput?: any): Promise<void>; | |
toBeDefined(expectationFailOutput?: any): Promise<void>; | |
toBeUndefined(expectationFailOutput?: any): Promise<void>; | |
toBeNull(expectationFailOutput?: any): Promise<void>; | |
toBeNaN(): Promise<void>; | |
toBeTruthy(expectationFailOutput?: any): Promise<void>; | |
toBeFalsy(expectationFailOutput?: any): Promise<void>; | |
toHaveBeenCalled(): Promise<void>; | |
toHaveBeenCalledWith(...params: any[]): Promise<void>; | |
toHaveBeenCalledTimes(expected: number | Promise<number>): Promise<void>; | |
toContain(expected: any, expectationFailOutput?: any): Promise<void>; | |
toBeLessThan(expected: number | Promise<number>, expectationFailOutput?: any): Promise<void>; | |
toBeLessThanOrEqual(expected: number | Promise<number>, expectationFailOutput?: any): Promise<void>; | |
toBeGreaterThan(expected: number | Promise<number>, expectationFailOutput?: any): Promise<void>; | |
toBeGreaterThanOrEqual(expected: number | Promise<number>, expectationFailOutput?: any): Promise<void>; | |
toBeCloseTo(expected: number | Promise<number>, precision?: any, expectationFailOutput?: any): Promise<void>; | |
toThrow(expected?: any): Promise<void>; | |
toThrowError(message?: string | RegExp | Promise<string | RegExp>): Promise<void>; | |
toThrowError(expected?: new (...args: any[]) => Error | Promise<new (...args: any[]) => Error>, message?: string | RegExp | Promise<string | RegExp>): Promise<void>; | |
} | |
interface ArrayLikeMatchers<T> extends Matchers<ArrayLike<T>> { | |
toBe(expected: Expected<ArrayLike<T>>, expectationFailOutput?: any): Promise<void>; | |
toEqual(expected: Expected<ArrayLike<T>>, expectationFailOutput?: any): Promise<void>; | |
toContain(expected: T, expectationFailOutput?: any): Promise<void>; | |
not: ArrayLikeMatchers<T>; | |
} | |
function addMatchers(matchers: AsyncCustomMatcherFactories): void; | |
interface Env { | |
addMatchers(matchers: AsyncCustomMatcherFactories): void; | |
} | |
interface Spec { | |
addMatchers(matchers: AsyncCustomMatcherFactories): void; | |
} | |
interface AsyncCustomMatcherFactories { | |
[index: string]: AsyncCustomMatcherFactory; | |
} | |
interface AsyncCustomMatcherFactory { | |
(util: MatchersUtil, customEqualityTesters: CustomEqualityTester[]): AsyncCustomMatcher; | |
} | |
interface AsyncCustomMatcher { | |
compare<T>(actual: T, expected: T): AsyncCustomMatcherResult; | |
compare(actual: any, expected: any): AsyncCustomMatcherResult; | |
} | |
interface AsyncCustomMatcherResult { | |
pass: boolean | Promise<boolean>; | |
message?: string; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment