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