]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
6d552041f1ca1bc239a9471dd5f72fc719470ca2
[ceph.git] /
1 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2
3 import { ChartsModule } from 'ng2-charts/ng2-charts';
4
5 import { CephfsChartComponent } from './cephfs-chart.component';
6
7 describe('CephfsChartComponent', () => {
8   let component: CephfsChartComponent;
9   let fixture: ComponentFixture<CephfsChartComponent>;
10
11   beforeEach(
12     async(() => {
13       TestBed.configureTestingModule({
14         imports: [ChartsModule],
15         declarations: [CephfsChartComponent]
16       }).compileComponents();
17     })
18   );
19
20   beforeEach(() => {
21     fixture = TestBed.createComponent(CephfsChartComponent);
22     component = fixture.componentInstance;
23     fixture.detectChanges();
24   });
25
26   it('should create', () => {
27     expect(component).toBeTruthy();
28   });
29 });