]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/blob
d1ed14d57a22f6f2a085f552fd3efc7d2ce7d6f2
[ceph.git] /
1 import { ComponentFixture, TestBed } from '@angular/core/testing';
2
3 import { NgbAlertModule } from '@ng-bootstrap/ng-bootstrap';
4
5 import { configureTestBed, i18nProviders } from '../../../../testing/unit-test-helper';
6 import { AlertPanelComponent } from './alert-panel.component';
7
8 describe('AlertPanelComponent', () => {
9   let component: AlertPanelComponent;
10   let fixture: ComponentFixture<AlertPanelComponent>;
11
12   configureTestBed({
13     declarations: [AlertPanelComponent],
14     imports: [NgbAlertModule],
15     providers: [i18nProviders]
16   });
17
18   beforeEach(() => {
19     fixture = TestBed.createComponent(AlertPanelComponent);
20     component = fixture.componentInstance;
21     fixture.detectChanges();
22   });
23
24   it('should create', () => {
25     expect(component).toBeTruthy();
26   });
27 });