argos/dmp-admin/src/app/bootstrap/profile-editor/profile-editor.component.sp...

26 lines
682 B
TypeScript

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