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