mirror of
https://github.com/amineo/t2-stat-parser.git
synced 2026-01-20 01:34:47 +00:00
19 lines
453 B
TypeScript
19 lines
453 B
TypeScript
import { Test, TestingModule } from '@nestjs/testing';
|
|
import { GamesService } from './games.service';
|
|
|
|
describe('GamesService', () => {
|
|
let service: GamesService;
|
|
|
|
beforeEach(async () => {
|
|
const module: TestingModule = await Test.createTestingModule({
|
|
providers: [GamesService],
|
|
}).compile();
|
|
|
|
service = module.get<GamesService>(GamesService);
|
|
});
|
|
|
|
it('should be defined', () => {
|
|
expect(service).toBeDefined();
|
|
});
|
|
});
|