feat: RendererV2 integration (#14469)

This commit is contained in:
Victor Berchet
2017-02-14 21:03:18 -08:00
committed by Igor Minar
parent b4d444a0a7
commit bb9c7ae6e7
38 changed files with 888 additions and 607 deletions

View File

@ -15,7 +15,7 @@ export function main() {
function detectChangesAndExpectClassName(classes: string): void {
fixture.detectChanges();
expect(fixture.debugElement.children[0].nativeElement.className).toEqual(classes);
expect(fixture.debugElement.children[0].nativeElement.className.trim()).toEqual(classes);
}
function getComponent(): TestComponent { return fixture.debugElement.componentInstance; }