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