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