1 import { HttpClientModule } from '@angular/common/http';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
4 import { TabsModule } from 'ngx-bootstrap';
6 import { configureTestBed } from '../../../../../testing/unit-test-helper';
7 import { DataTableModule } from '../../../../shared/datatable/datatable.module';
8 import { CdTableSelection } from '../../../../shared/models/cd-table-selection';
9 import { SharedModule } from '../../../../shared/shared.module';
10 import { PerformanceCounterModule } from '../../../performance-counter/performance-counter.module';
11 import { OsdPerformanceHistogramComponent } from '../osd-performance-histogram/osd-performance-histogram.component';
12 import { OsdDetailsComponent } from './osd-details.component';
14 describe('OsdDetailsComponent', () => {
15 let component: OsdDetailsComponent;
16 let fixture: ComponentFixture<OsdDetailsComponent>;
22 PerformanceCounterModule,
26 declarations: [OsdDetailsComponent, OsdPerformanceHistogramComponent]
30 fixture = TestBed.createComponent(OsdDetailsComponent);
31 component = fixture.componentInstance;
33 component.selection = new CdTableSelection();
35 fixture.detectChanges();
38 it('should create', () => {
39 expect(component).toBeTruthy();