feat: add umpire CRUD service

This commit is contained in:
2026-05-24 17:47:21 +02:00
parent 08d64bbaaf
commit 0f46cb3c93
2 changed files with 77 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { UmpireService } from './umpire.service';
describe('Umpire', () => {
let service: UmpireService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(UmpireService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});