feat(core): introduce fixture.whenRenderingDone for testing (#16732)

This commit is contained in:
Matias Niemelä
2017-05-12 16:49:16 -04:00
committed by Jason Aden
parent 06264645fd
commit 38c524d655
3 changed files with 28 additions and 0 deletions

View File

@ -16,6 +16,7 @@ export declare class ComponentFixture<T> {
destroy(): void;
detectChanges(checkNoChanges?: boolean): void;
isStable(): boolean;
whenRenderingDone(): Promise<any>;
whenStable(): Promise<any>;
}