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