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