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:
parent
9447705c73
commit
bf4b0c19b0
1 changed files with 12 additions and 0 deletions
12
run/vitest.config.ts
Normal file
12
run/vitest.config.ts
Normal 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,
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Reference in a new issue