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