X-Git-Url: https://juplo.de/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Fapp.component.spec.ts;h=1933668dfb10c9e47f36e45423d9cc05791dac8b;hb=73d0731d981e15ea882b6606cb1f672bb701502c;hp=ded94c9cef9b8080fbc392b5c77f583dc26f1861;hpb=ed0d31f519eee1dc46003c65e3b3e3b8cc0d3f6d;p=examples%2Fangular-tour-of-heroes diff --git a/src/app/app.component.spec.ts b/src/app/app.component.spec.ts index ded94c9..1933668 100644 --- a/src/app/app.component.spec.ts +++ b/src/app/app.component.spec.ts @@ -16,16 +16,16 @@ describe('AppComponent', () => { expect(app).toBeTruthy(); }); - it(`should have as title 'angular-tour-of-heroes'`, () => { + it(`should show expected title`, () => { const fixture = TestBed.createComponent(AppComponent); const app = fixture.debugElement.componentInstance; - expect(app.title).toEqual('angular-tour-of-heroes'); + expect(app.title).toEqual('LVM - Camunda-Beispiel'); }); it('should render title', () => { const fixture = TestBed.createComponent(AppComponent); fixture.detectChanges(); const compiled = fixture.debugElement.nativeElement; - expect(compiled.querySelector('.content span').textContent).toContain('angular-tour-of-heroes app is running!'); + expect(compiled.querySelector('h1').textContent).toContain('LVM - Camunda-Beispiel'); }); });