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