1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
4 import { TabsModule } from 'ngx-bootstrap/tabs';
6 import { RgwDaemonService } from '../../../shared/api/rgw-daemon.service';
7 import { CdTableSelection } from '../../../shared/models/cd-table-selection';
8 import { SharedModule } from '../../../shared/shared.module';
9 import { configureTestBed } from '../../../shared/unit-test-helper';
10 import { PerformanceCounterModule } from '../../performance-counter/performance-counter.module';
11 import { RgwDaemonDetailsComponent } from './rgw-daemon-details.component';
13 describe('RgwDaemonDetailsComponent', () => {
14 let component: RgwDaemonDetailsComponent;
15 let fixture: ComponentFixture<RgwDaemonDetailsComponent>;
18 declarations: [RgwDaemonDetailsComponent],
21 PerformanceCounterModule,
23 HttpClientTestingModule
25 providers: [RgwDaemonService]
29 fixture = TestBed.createComponent(RgwDaemonDetailsComponent);
30 component = fixture.componentInstance;
31 component.selection = new CdTableSelection();
32 fixture.detectChanges();
35 it('should create', () => {
36 expect(component).toBeTruthy();