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

16 lines
363 B
TypeScript
Raw Normal View History

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