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