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