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