]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/loading-panel/loading-panel.component.spec.ts
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / loading-panel / loading-panel.component.spec.ts
1 import { ComponentFixture, TestBed } from '@angular/core/testing';
2
3 import { AlertModule } from 'ngx-bootstrap/alert';
4
5 import { configureTestBed } from '../../../../testing/unit-test-helper';
6 import { LoadingPanelComponent } from './loading-panel.component';
7
8 describe('LoadingPanelComponent', () => {
9 let component: LoadingPanelComponent;
10 let fixture: ComponentFixture<LoadingPanelComponent>;
11
12 configureTestBed({
13 declarations: [LoadingPanelComponent],
14 imports: [AlertModule.forRoot()]
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 });