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); }); it('should be defined', () => { expect(controller).toBeDefined(); }); });