1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3 import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
4 import { RouterTestingModule } from '@angular/router/testing';
6 import { TabsModule } from 'ngx-bootstrap/tabs';
8 import { configureTestBed, i18nProviders } from '../../../../testing/unit-test-helper';
9 import { SharedModule } from '../../../shared/shared.module';
10 import { PerformanceCounterModule } from '../../performance-counter/performance-counter.module';
11 import { RgwDaemonDetailsComponent } from '../rgw-daemon-details/rgw-daemon-details.component';
12 import { RgwDaemonListComponent } from './rgw-daemon-list.component';
14 describe('RgwDaemonListComponent', () => {
15 let component: RgwDaemonListComponent;
16 let fixture: ComponentFixture<RgwDaemonListComponent>;
19 declarations: [RgwDaemonListComponent, RgwDaemonDetailsComponent],
21 BrowserAnimationsModule,
22 HttpClientTestingModule,
24 PerformanceCounterModule,
28 providers: i18nProviders
32 fixture = TestBed.createComponent(RgwDaemonListComponent);
33 component = fixture.componentInstance;
34 fixture.detectChanges();
37 it('should create', () => {
38 expect(component).toBeTruthy();