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