1 import { HttpClientModule } from '@angular/common/http';
2 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
4 import { TabsModule } from 'ngx-bootstrap/tabs';
6 import { SharedModule } from '../../../shared/shared.module';
7 import { PerformanceCounterModule } from '../../performance-counter/performance-counter.module';
8 import { RgwDaemonDetailsComponent } from '../rgw-daemon-details/rgw-daemon-details.component';
9 import { RgwDaemonListComponent } from './rgw-daemon-list.component';
11 describe('RgwDaemonListComponent', () => {
12 let component: RgwDaemonListComponent;
13 let fixture: ComponentFixture<RgwDaemonListComponent>;
15 beforeEach(async(() => {
16 TestBed.configureTestingModule({
18 RgwDaemonListComponent,
19 RgwDaemonDetailsComponent
24 PerformanceCounterModule,
32 fixture = TestBed.createComponent(RgwDaemonListComponent);
33 component = fixture.componentInstance;
34 fixture.detectChanges();
37 it('should create', () => {
38 expect(component).toBeTruthy();