1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3 import { RouterTestingModule } from '@angular/router/testing';
5 import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
7 import { configureTestBed, i18nProviders } from '../../../../testing/unit-test-helper';
8 import { SharedModule } from '../../../shared/shared.module';
9 import { CephfsClientsComponent } from './cephfs-clients.component';
11 describe('CephfsClientsComponent', () => {
12 let component: CephfsClientsComponent;
13 let fixture: ComponentFixture<CephfsClientsComponent>;
18 BsDropdownModule.forRoot(),
20 HttpClientTestingModule
22 declarations: [CephfsClientsComponent],
23 providers: i18nProviders
27 fixture = TestBed.createComponent(CephfsClientsComponent);
28 component = fixture.componentInstance;
29 fixture.detectChanges();
32 it('should create', () => {
33 expect(component).toBeTruthy();