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