UNPKG

torotask

Version:

Task queue processing in NodeJS based on BullMQ and Redis

14 lines 381 B
/** * Simple test to verify Jest setup is working */ describe('Basic Jest Setup', () => { it('should run a simple test', () => { expect(1 + 1).toBe(2); }); it('should handle async operations', async () => { const result = await Promise.resolve('test'); expect(result).toBe('test'); }); }); export {}; //# sourceMappingURL=basic.test.js.map