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