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