Initial Commit
This commit is contained in:
15
otis/src/app/courts/court.service.spec.ts
Normal file
15
otis/src/app/courts/court.service.spec.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import { inject, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { CourtService } from './court.service';
|
||||
|
||||
describe('CourtService', () => {
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
providers: [CourtService],
|
||||
});
|
||||
});
|
||||
|
||||
it('should be created', inject([CourtService], (service: CourtService) => {
|
||||
expect(service).toBeTruthy();
|
||||
}));
|
||||
});
|
||||
Reference in New Issue
Block a user