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