1 import { ComponentFixture, TestBed } from '@angular/core/testing';
3 import { RgwSyncMetadataInfoComponent } from './rgw-sync-metadata-info.component';
4 import { NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap';
6 describe('RgwSyncMetadataInfoComponent', () => {
7 let component: RgwSyncMetadataInfoComponent;
8 let fixture: ComponentFixture<RgwSyncMetadataInfoComponent>;
10 beforeEach(async () => {
11 await TestBed.configureTestingModule({
12 declarations: [RgwSyncMetadataInfoComponent],
13 imports: [NgbPopoverModule]
14 }).compileComponents();
18 fixture = TestBed.createComponent(RgwSyncMetadataInfoComponent);
19 component = fixture.componentInstance;
20 fixture.detectChanges();
23 it('should create', () => {
24 expect(component).toBeTruthy();