feat(products): vitest 도입 + 제품 접근 확장 로직 (music tier 하위 호환)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-11 08:24:33 +09:00
parent fe055fd0d0
commit cf89e8cbdb
5 changed files with 1179 additions and 30 deletions

7
vitest.config.ts Normal file
View File

@@ -0,0 +1,7 @@
import { defineConfig } from 'vitest/config';
import path from 'path';
export default defineConfig({
test: { include: ['lib/**/*.test.ts'] },
resolve: { alias: { '@': path.resolve(__dirname, '.') } },
});