2026-04-03 19:17:53 +08:00
|
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
test: {
|
|
|
|
|
root: '.',
|
|
|
|
|
include: ['tests/**/*.test.ts'],
|
|
|
|
|
globals: true,
|
|
|
|
|
setupFiles: ['tests/setup.ts'],
|
|
|
|
|
testTimeout: 15000,
|
|
|
|
|
hookTimeout: 15000,
|
|
|
|
|
pool: 'forks',
|
|
|
|
|
silent: false,
|
|
|
|
|
reporters: ['verbose'],
|
|
|
|
|
coverage: {
|
|
|
|
|
provider: 'v8',
|
|
|
|
|
reporter: ['lcov', 'text'],
|
|
|
|
|
reportsDirectory: './coverage',
|
|
|
|
|
include: ['src/**/*.ts'],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
resolve: {
|
|
|
|
|
alias: {
|
|
|
|
|
'@modelcontextprotocol/sdk/server/mcp': new URL(
|
|
|
|
|
'./node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.js',
|
|
|
|
|
import.meta.url
|
|
|
|
|
).pathname,
|
|
|
|
|
'@modelcontextprotocol/sdk/server/streamableHttp': new URL(
|
|
|
|
|
'./node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.js',
|
|
|
|
|
import.meta.url
|
|
|
|
|
).pathname,
|
2026-04-05 00:12:14 +08:00
|
|
|
'@modelcontextprotocol/sdk/inMemory': new URL(
|
|
|
|
|
'./node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.js',
|
|
|
|
|
import.meta.url
|
|
|
|
|
).pathname,
|
|
|
|
|
'@modelcontextprotocol/sdk/client/index': new URL(
|
|
|
|
|
'./node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.js',
|
|
|
|
|
import.meta.url
|
|
|
|
|
).pathname,
|
2026-04-03 19:17:53 +08:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
});
|