c975e16a14
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
14 lines
520 B
JavaScript
14 lines
520 B
JavaScript
import { defineConfig } from 'vitest/config';
|
|
|
|
// Minimal Vitest config for tools/*.test.mjs (Node environment, no Vue/DOM).
|
|
// Separate from vitest.config.ts which targets tests/Frontend/**/*.ts.
|
|
// Run from repo root: node app/node_modules/vitest/vitest.mjs --config app/vitest.config.tools.mjs run
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
include: ['../tools/*.test.mjs'],
|
|
exclude: ['../tools/ruflo-*.test.mjs', '../tools/subagent-prompt-prefix.test.mjs'],
|
|
},
|
|
});
|