]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
68799f5ee36218d7777497acf10b0d5fd81301b3
[ceph-ci.git] /
1 import { ComponentFixture, TestBed } from '@angular/core/testing';
2
3 import { configureTestBed, i18nProviders } from '../../../../testing/unit-test-helper';
4 import { CdTableSelection } from '../../../shared/models/cd-table-selection';
5 import { SharedModule } from '../../../shared/shared.module';
6 import { RgwBucketDetailsComponent } from './rgw-bucket-details.component';
7
8 describe('RgwBucketDetailsComponent', () => {
9   let component: RgwBucketDetailsComponent;
10   let fixture: ComponentFixture<RgwBucketDetailsComponent>;
11
12   configureTestBed({
13     declarations: [RgwBucketDetailsComponent],
14     imports: [SharedModule],
15     providers: [i18nProviders]
16   });
17
18   beforeEach(() => {
19     fixture = TestBed.createComponent(RgwBucketDetailsComponent);
20     component = fixture.componentInstance;
21     component.selection = new CdTableSelection();
22     fixture.detectChanges();
23   });
24
25   it('should create', () => {
26     expect(component).toBeTruthy();
27   });
28 });