]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
45df0963713f9b975d1687663eb405a6600112db
[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 { LoadingPanelComponent } from './loading-panel.component';
7
8 describe('LoadingPanelComponent', () => {
9   let component: LoadingPanelComponent;
10   let fixture: ComponentFixture<LoadingPanelComponent>;
11
12   configureTestBed({
13     declarations: [LoadingPanelComponent],
14     imports: [AlertModule.forRoot()]
15   });
16
17   beforeEach(() => {
18     fixture = TestBed.createComponent(LoadingPanelComponent);
19     component = fixture.componentInstance;
20     fixture.detectChanges();
21   });
22
23   it('should create', () => {
24     expect(component).toBeTruthy();
25   });
26 });