Files
support_backend/tests/integration/redis.test.ts
T
2026-08-19 16:29:17 +05:30

9 lines
268 B
TypeScript

import { describe, it, expect } from 'vitest';
import { cacheService } from '@/infrastructure/cache';
describe('Redis Cache Service Baseline Test', () => {
it('should instantiate cache service abstraction', () => {
expect(cacheService).toBeDefined();
});
});