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