import { Test, TestingModule } from '@nestjs/testing'; import { CommentCrudController } from './comment-crud.controller'; describe('CommentCrud Controller', () => { let controller: CommentCrudController; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ controllers: [CommentCrudController], }).compile(); controller = module.get(CommentCrudController); }); it('should be defined', () => { expect(controller).toBeDefined(); }); });