]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/blob
f33e17cd11d43370bce36273d0e203de95b0544d
[ceph.git] /
1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3
4 import { configureTestBed, i18nProviders } from '../../../../../testing/unit-test-helper';
5 import { SharedModule } from '../../../../shared/shared.module';
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     providers: [i18nProviders]
16   });
17
18   beforeEach(() => {
19     fixture = TestBed.createComponent(MgrModuleDetailsComponent);
20     component = fixture.componentInstance;
21     component.selection = undefined;
22     fixture.detectChanges();
23   });
24
25   it('should create', () => {
26     expect(component).toBeTruthy();
27   });
28 });