9 lines
262 B
TypeScript
9 lines
262 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import { queueManager } from '@/infrastructure/queue';
|
|
|
|
describe('Queue Concurrency Baseline Test', () => {
|
|
it('should instantiate queue manager cleanly', () => {
|
|
expect(queueManager).toBeDefined();
|
|
});
|
|
});
|