import { ComponentFixture, TestBed } from '@angular/core/testing'; import { PrergebnisComponent } from './prergebnis.component'; describe('PrergebnisComponent', () => { let component: PrergebnisComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ PrergebnisComponent ] }) .compileComponents(); fixture = TestBed.createComponent(PrergebnisComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });