ngx-testing-tools
Version:
Makes Angular testing easier
6 lines (5 loc) • 455 B
TypeScript
import { DebugElement, Type } from '@angular/core';
import { ComponentFixture } from '@angular/core/testing';
export declare function findDebugElement(fixture: ComponentFixture<any>, selector: string): DebugElement;
export declare function findDebugElement(fixture: ComponentFixture<any>, directive: Type<any>): DebugElement;
export declare function findDebugElement(fixture: ComponentFixture<any>, selectorOrDirective: string | Type<any>): DebugElement;