1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
4 import { SharedModule } from '../../../shared/shared.module';
5 import { configureTestBed } from '../../../shared/unit-test-helper';
6 import { TablePerformanceCounterComponent } from './table-performance-counter.component';
8 describe('TablePerformanceCounterComponent', () => {
9 let component: TablePerformanceCounterComponent;
10 let fixture: ComponentFixture<TablePerformanceCounterComponent>;
13 declarations: [TablePerformanceCounterComponent],
14 imports: [SharedModule, HttpClientTestingModule]
18 fixture = TestBed.createComponent(TablePerformanceCounterComponent);
19 component = fixture.componentInstance;
20 fixture.detectChanges();
23 it('should create', () => {
24 expect(component).toBeTruthy();