]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/loading-panel/loading-panel.component.spec.ts
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / loading-panel / loading-panel.component.spec.ts
CommitLineData
11fdf7f2
TL
1import { ComponentFixture, TestBed } from '@angular/core/testing';
2
f67539c2 3import { NgbAlertModule } from '@ng-bootstrap/ng-bootstrap';
11fdf7f2 4
f67539c2 5import { configureTestBed } from '~/testing/unit-test-helper';
11fdf7f2
TL
6import { LoadingPanelComponent } from './loading-panel.component';
7
8describe('LoadingPanelComponent', () => {
9 let component: LoadingPanelComponent;
10 let fixture: ComponentFixture<LoadingPanelComponent>;
11
12 configureTestBed({
13 declarations: [LoadingPanelComponent],
f67539c2 14 imports: [NgbAlertModule]
11fdf7f2
TL
15 });
16
17 beforeEach(() => {
18 fixture = TestBed.createComponent(LoadingPanelComponent);
19 component = fixture.componentInstance;
20 fixture.detectChanges();
21 });
22
23 it('should create', () => {
24 expect(component).toBeTruthy();
25 });
26});