diff --git a/run/vitest.config.ts b/run/vitest.config.ts new file mode 100644 index 0000000..dcc8f08 --- /dev/null +++ b/run/vitest.config.ts @@ -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, + }, +});