chore(backend): add vitest.config.ts

This commit is contained in:
saravanakumardb1 2026-03-26 23:10:12 -07:00
parent 891754f16a
commit ef5ff92e7a

12
backend/vitest.config.ts Normal file
View File

@ -0,0 +1,12 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
include: ['src/**/*.test.ts'],
passWithNoTests: true,
env: {
ALLOW_ANONYMOUS_DEV: 'true',
},
},
});