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