1 import { ComponentFixture, TestBed } from '@angular/core/testing';
3 import { AlertModule } from 'ngx-bootstrap';
5 import { configureTestBed } from '../../unit-test-helper';
6 import { ErrorPanelComponent } from './error-panel.component';
8 describe('ErrorPanelComponent', () => {
9 let component: ErrorPanelComponent;
10 let fixture: ComponentFixture<ErrorPanelComponent>;
13 declarations: [ErrorPanelComponent],
14 imports: [AlertModule.forRoot()]
18 fixture = TestBed.createComponent(ErrorPanelComponent);
19 component = fixture.componentInstance;
20 fixture.detectChanges();
23 it('should create', () => {
24 expect(component).toBeTruthy();