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