mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 00:30:02 +00:00
17 lines
360 B
TypeScript
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();
|
|
});
|
|
});
|