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