Files
brewman/overlord/src/app/role/role.service.spec.ts
T
2024-05-31 10:13:42 +05:30

18 lines
509 B
TypeScript

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();
}));
});