scrum4me-mcp/vitest.config.ts
Madhura68 5dfca22fe6 chore: add vitest to devDependencies with config
Adds vitest as test runner for the MCP repo. Config targets
__tests__/**/*.test.ts and excludes vendor/ and node_modules/.
2026-04-30 18:22:51 +02:00

9 lines
207 B
TypeScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'node',
include: ['__tests__/**/*.test.ts'],
exclude: ['vendor/**', 'node_modules/**'],
},
})