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