chore(run): 🔧 Update Vitest config to modify test runtime behavior, including environment variables and coverage settings

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Quinn Ftw 2026-01-29 15:25:58 -08:00
parent 9447705c73
commit bf4b0c19b0

12
run/vitest.config.ts Normal file
View file

@ -0,0 +1,12 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
include: ['**/*.test.ts'],
exclude: [
'utils/deployment-urls.test.ts', // Manual verification script, not vitest
],
environment: 'node',
globals: false,
},
});