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