mirror of
https://github.com/amineo/t2-stat-parser.git
synced 2026-03-05 04:30:21 +00:00
18 lines
446 B
TypeScript
18 lines
446 B
TypeScript
import { Test, TestingModule } from '@nestjs/testing';
|
|
import { GameService } from './game.service';
|
|
|
|
describe('GameService', () => {
|
|
let service: GameService;
|
|
|
|
beforeEach(async () => {
|
|
const module: TestingModule = await Test.createTestingModule({
|
|
providers: [GameService],
|
|
}).compile();
|
|
|
|
service = module.get<GameService>(GameService);
|
|
});
|
|
|
|
it('should be defined', () => {
|
|
expect(service).toBeDefined();
|
|
});
|
|
});
|