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