397777089e
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
13 lines
476 B
JavaScript
13 lines
476 B
JavaScript
import { defineConfig } from 'vitest/config';
|
|
|
|
// Vitest config для tools/*.test.mjs управляющего слоя (Node, без Vue/DOM).
|
|
// claude-brain: конфиг в корне, tools/ рядом → пути без '../' (в отличие от app/).
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
include: ['tools/*.test.mjs'],
|
|
exclude: ['tools/ruflo-*.test.mjs', 'tools/subagent-prompt-prefix.test.mjs'],
|
|
},
|
|
});
|