16 lines
362 B
TypeScript
16 lines
362 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { MatchesService } from './matches.service';
|
|
|
|
describe('MatchesService', () => {
|
|
let service: MatchesService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(MatchesService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|