]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
516d4127d8b2464747a259377294f4d0ba59fc3c
[ceph.git] /
1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3
4 import { SharedModule } from '../../../shared/shared.module';
5 import { configureTestBed } from '../../../shared/unit-test-helper';
6 import { TablePerformanceCounterComponent } from './table-performance-counter.component';
7
8 describe('TablePerformanceCounterComponent', () => {
9   let component: TablePerformanceCounterComponent;
10   let fixture: ComponentFixture<TablePerformanceCounterComponent>;
11
12   configureTestBed({
13     declarations: [TablePerformanceCounterComponent],
14     imports: [SharedModule, HttpClientTestingModule]
15   });
16
17   beforeEach(() => {
18     fixture = TestBed.createComponent(TablePerformanceCounterComponent);
19     component = fixture.componentInstance;
20     fixture.detectChanges();
21   });
22
23   it('should create', () => {
24     expect(component).toBeTruthy();
25   });
26 });