Files
brain/vitest.config.tools.mjs
T

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