feat: shop detection from URL + vitest setup

This commit is contained in:
2026-05-25 13:53:14 +00:00
parent fb308da5c5
commit 91dea772aa
3 changed files with 49 additions and 0 deletions

10
vitest.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vitest/config'
import path from 'node:path'
export default defineConfig({
test: {
environment: 'node',
include: ['tests/**/*.test.ts'],
},
resolve: { alias: { '@': path.resolve(__dirname, './src') } },
})