]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/mgr-modules/mgr-module-details/mgr-module-details.component.spec.ts
bump version to 18.2.4-pve3
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / mgr-modules / mgr-module-details / mgr-module-details.component.spec.ts
1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3
4 import { SharedModule } from '~/app/shared/shared.module';
5 import { configureTestBed } from '~/testing/unit-test-helper';
6 import { MgrModuleDetailsComponent } from './mgr-module-details.component';
7
8 describe('MgrModuleDetailsComponent', () => {
9 let component: MgrModuleDetailsComponent;
10 let fixture: ComponentFixture<MgrModuleDetailsComponent>;
11
12 configureTestBed({
13 declarations: [MgrModuleDetailsComponent],
14 imports: [HttpClientTestingModule, SharedModule]
15 });
16
17 beforeEach(() => {
18 fixture = TestBed.createComponent(MgrModuleDetailsComponent);
19 component = fixture.componentInstance;
20 component.selection = undefined;
21 fixture.detectChanges();
22 });
23
24 it('should create', () => {
25 expect(component).toBeTruthy();
26 });
27 });