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