import { Test, TestingModule } from '@nestjs/testing'; import { CommentService } from './comment.service'; describe('CommentService', () => { let service: CommentService; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ providers: [CommentService], }).compile(); service = module.get(CommentService); }); it('should be defined', () => { expect(service).toBeDefined(); }); });