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