Skip to content
Snippets Groups Projects
Commit 14fe901c authored by Julian Matschinske's avatar Julian Matschinske
Browse files

Remove obsolete tests

parent 0a3b24aa
Branches
Tags
No related merge requests found
...@@ -19,17 +19,4 @@ describe('AppComponent', () => { ...@@ -19,17 +19,4 @@ describe('AppComponent', () => {
const app = fixture.componentInstance; const app = fixture.componentInstance;
expect(app).toBeTruthy(); expect(app).toBeTruthy();
}); });
it(`should have as title 'covid19'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('covid19');
});
it('should render title', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.nativeElement;
expect(compiled.querySelector('.content span').textContent).toContain('covid19 app is running!');
});
}); });
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment