auto-claude: subtask-1-3 - Create comprehensive unit tests for Cache with LRU

This commit is contained in:
2026-01-25 06:37:05 +01:00
parent 41abcac9f7
commit cad7d46c7d
3 changed files with 503 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from 'vitest/config';
import path from 'path';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['src/__tests__/**/*.test.ts', 'src/__tests__/**/*.test.tsx'],
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});