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