9 lines
268 B
TypeScript
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();
|
|
});
|
|
});
|