Files
gameyfin/frontend/src/app/services/gameserver-api.service.spec.ts
T
2022-07-21 00:29:00 +02:00

17 lines
360 B
TypeScript

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