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