]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
df3748b175b355511eee3d73956359a5ce18dfb3
[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 import { configureTestBed } from '~/testing/unit-test-helper';
6
7 describe('RgwSyncMetadataInfoComponent', () => {
8   let component: RgwSyncMetadataInfoComponent;
9   let fixture: ComponentFixture<RgwSyncMetadataInfoComponent>;
10
11   configureTestBed({
12     declarations: [RgwSyncMetadataInfoComponent],
13     imports: [NgbPopoverModule]
14   });
15
16   beforeEach(() => {
17     fixture = TestBed.createComponent(RgwSyncMetadataInfoComponent);
18     component = fixture.componentInstance;
19     fixture.detectChanges();
20   });
21
22   it('should create', () => {
23     expect(component).toBeTruthy();
24   });
25 });