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