hades/client/app/services/game.service.spec.ts

12 lines
323 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { GameService } from './game.service';
describe('GameService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: GameService = TestBed.get(GameService);
expect(service).toBeTruthy();
});
});