import { inject, TestBed } from '@angular/core/testing'; import { HttpClientModule } from '@angular/common/http'; import { ProductGroupService } from './product-group.service'; describe('ProductGroupService', () => { beforeEach(() => { TestBed.configureTestingModule({ imports: [HttpClientModule], providers: [ProductGroupService], }); }); it('should be created', inject([ProductGroupService], (service: ProductGroupService) => { expect(service).toBeTruthy(); })); });