platform-tooling/run/vitest.config.ts
Quinn Ftw 9a48fdceee chore(run): 🔧 Update Vitest config for parallel test execution and coverage optimization
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-17 15:44:01 -08:00

12 lines
275 B
TypeScript

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,
},
});