t2-stat-parser/app/api/src/games/games.controller.spec.ts
2020-08-22 10:19:50 -04:00

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();
});
});