1 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
3 import { ChartsModule } from 'ng2-charts/ng2-charts';
5 import { CephfsChartComponent } from './cephfs-chart.component';
7 describe('CephfsChartComponent', () => {
8 let component: CephfsChartComponent;
9 let fixture: ComponentFixture<CephfsChartComponent>;
13 TestBed.configureTestingModule({
14 imports: [ChartsModule],
15 declarations: [CephfsChartComponent]
16 }).compileComponents();
21 fixture = TestBed.createComponent(CephfsChartComponent);
22 component = fixture.componentInstance;
23 fixture.detectChanges();
26 it('should create', () => {
27 expect(component).toBeTruthy();