1 import { ComponentFixture, TestBed } from '@angular/core/testing';
3 import { CephfsSubvolumeGroupComponent } from './cephfs-subvolume-group.component';
4 import { HttpClientTestingModule } from '@angular/common/http/testing';
6 describe('CephfsSubvolumeGroupComponent', () => {
7 let component: CephfsSubvolumeGroupComponent;
8 let fixture: ComponentFixture<CephfsSubvolumeGroupComponent>;
10 beforeEach(async () => {
11 await TestBed.configureTestingModule({
12 declarations: [CephfsSubvolumeGroupComponent],
13 imports: [HttpClientTestingModule]
14 }).compileComponents();
18 fixture = TestBed.createComponent(CephfsSubvolumeGroupComponent);
19 component = fixture.componentInstance;
20 fixture.detectChanges();
23 it('should create', () => {
24 expect(component).toBeTruthy();