]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
ebbe162f1160ceac8786b2ca268713843516df09
[ceph.git] /
1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3
4 import { configureTestBed } from '~/testing/unit-test-helper';
5 import { SharedModule } from '~/app/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   });
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 });