]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.spec.ts
675063413adc15c97f39a8b1b4e2d4ec31b2bc04
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / prometheus / prometheus-tabs / prometheus-tabs.component.spec.ts
1 import { ComponentFixture, TestBed } from '@angular/core/testing';
2 import { RouterTestingModule } from '@angular/router/testing';
3
4 import { NgbNavModule } from '@ng-bootstrap/ng-bootstrap';
5
6 import { configureTestBed } from '~/testing/unit-test-helper';
7 import { PrometheusTabsComponent } from './prometheus-tabs.component';
8
9 describe('PrometheusTabsComponent', () => {
10 let component: PrometheusTabsComponent;
11 let fixture: ComponentFixture<PrometheusTabsComponent>;
12
13 configureTestBed({
14 imports: [RouterTestingModule, NgbNavModule],
15 declarations: [PrometheusTabsComponent]
16 });
17
18 beforeEach(() => {
19 fixture = TestBed.createComponent(PrometheusTabsComponent);
20 component = fixture.componentInstance;
21 fixture.detectChanges();
22 });
23
24 it('should create', () => {
25 expect(component).toBeTruthy();
26 });
27 });