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