Files
jambotron/jambotron-ui/src/app/services/roles.service.spec.ts
T
2025-06-14 19:41:08 +03:00

17 lines
352 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { RolesService } from './roles.service';
describe('RolesService', () => {
let service: RolesService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(RolesService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});