]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
47fb26d8deaf4236a381e8095dcfec8d9b50dd49
[ceph-ci.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
6 describe('RgwSyncDataInfoComponent', () => {
7   let component: RgwSyncDataInfoComponent;
8   let fixture: ComponentFixture<RgwSyncDataInfoComponent>;
9
10   beforeEach(async () => {
11     await TestBed.configureTestingModule({
12       declarations: [RgwSyncDataInfoComponent],
13       imports: [NgbPopoverModule]
14     }).compileComponents();
15   });
16
17   beforeEach(() => {
18     fixture = TestBed.createComponent(RgwSyncDataInfoComponent);
19     component = fixture.componentInstance;
20     fixture.detectChanges();
21   });
22
23   it('should create', () => {
24     expect(component).toBeTruthy();
25   });
26 });