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