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