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