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