brewman/overlord/src/app/role/role.service.spec.ts

18 lines
455 B
TypeScript
Raw Normal View History

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