1 import { ComponentFixture, TestBed } from '@angular/core/testing';
3 import { NgbAlertModule } from '@ng-bootstrap/ng-bootstrap';
5 import { configureTestBed, i18nProviders } from '../../../../testing/unit-test-helper';
6 import { AlertPanelComponent } from './alert-panel.component';
8 describe('AlertPanelComponent', () => {
9 let component: AlertPanelComponent;
10 let fixture: ComponentFixture<AlertPanelComponent>;
13 declarations: [AlertPanelComponent],
14 imports: [NgbAlertModule],
15 providers: [i18nProviders]
19 fixture = TestBed.createComponent(AlertPanelComponent);
20 component = fixture.componentInstance;
21 fixture.detectChanges();
24 it('should create', () => {
25 expect(component).toBeTruthy();