UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

41 lines (40 loc) 1.64 kB
import { NgZone } from '../zone/ng_zone'; /** * The Testability service provides testing hooks that can be accessed from * the browser and by services such as Protractor. Each bootstrapped Angular * application on the page will have an instance of Testability. */ export declare class Testability { private _ngZone; constructor(_ngZone: NgZone); increasePendingRequestCount(): number; decreasePendingRequestCount(): number; isStable(): boolean; whenStable(callback: Function): void; getPendingRequestCount(): number; findBindings(using: any, provider: string, exactMatch: boolean): any[]; findProviders(using: any, provider: string, exactMatch: boolean): any[]; } /** * A global registry of {@link Testability} instances for specific elements. */ export declare class TestabilityRegistry { constructor(); registerApplication(token: any, testability: Testability): void; getTestability(elem: any): Testability; getAllTestabilities(): Testability[]; getAllRootElements(): any[]; findTestabilityInTree(elem: Node, findInAncestors?: boolean): Testability; } /** * Adapter interface for retrieving the `Testability` service associated for a * particular context. */ export interface GetTestability { addToWindow(registry: TestabilityRegistry): void; findTestabilityInTree(registry: TestabilityRegistry, elem: any, findInAncestors: boolean): Testability; } /** * Set the {@link GetTestability} implementation used by the Angular testing framework. */ export declare function setTestabilityGetter(getter: GetTestability): void;