Skip to content
This repository has been archived by the owner on Apr 9, 2022. It is now read-only.

Commit

Permalink
fix(@schematics/angular): Fix broken unit test on new app
Browse files Browse the repository at this point in the history
  • Loading branch information
Brocco authored and hansl committed May 17, 2018
1 parent 87b30a8 commit 4785f01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ describe('AppComponent', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.debugElement.nativeElement;
expect(compiled.querySelector('h1').textContent).toContain('Welcome to <%= prefix %>!');
expect(compiled.querySelector('h1').textContent).toContain('Welcome to <%= name %>!');
}));
});

0 comments on commit 4785f01

Please sign in to comment.