]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
6f0af94e4b603e66a9560a0679882cd4a1258e31
[ceph.git] /
1 import { HttpClientModule } from '@angular/common/http';
2 import { HttpClientTestingModule } from '@angular/common/http/testing';
3 import { inject, TestBed } from '@angular/core/testing';
4
5 import { BsDropdownModule } from 'ngx-bootstrap';
6
7 import { TablePerformanceCounterService } from './table-performance-counter.service';
8
9 describe('TablePerformanceCounterService', () => {
10   beforeEach(() => {
11     TestBed.configureTestingModule({
12       providers: [TablePerformanceCounterService],
13       imports: [
14         HttpClientTestingModule,
15         BsDropdownModule.forRoot(),
16         HttpClientModule
17       ]
18     });
19   });
20
21   it(
22     'should be created',
23     inject([TablePerformanceCounterService], (service: TablePerformanceCounterService) => {
24       expect(service).toBeTruthy();
25     })
26   );
27 });