1 import { HttpClientModule } from '@angular/common/http';
2 import { HttpClientTestingModule } from '@angular/common/http/testing';
3 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
5 import { SharedModule } from '../../../shared/shared.module';
6 import { TablePerformanceCounterService } from '../services/table-performance-counter.service';
7 import { TablePerformanceCounterComponent } from './table-performance-counter.component';
9 describe('TablePerformanceCounterComponent', () => {
10 let component: TablePerformanceCounterComponent;
11 let fixture: ComponentFixture<TablePerformanceCounterComponent>;
13 beforeEach(async(() => {
14 TestBed.configureTestingModule({
15 declarations: [ TablePerformanceCounterComponent ],
17 HttpClientTestingModule,
21 providers: [ TablePerformanceCounterService ]
27 fixture = TestBed.createComponent(TablePerformanceCounterComponent);
28 component = fixture.componentInstance;
29 fixture.detectChanges();
32 it('should create', () => {
33 expect(component).toBeTruthy();