@softerist/heuristic-mcp 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,29 @@
1
+ import { defineConfig } from 'vitest/config';
2
+
3
+ export default defineConfig({
4
+ test: {
5
+ // Test files pattern
6
+ include: ['test/**/*.test.js'],
7
+
8
+ // Global test timeout (embedding models can be slow)
9
+ testTimeout: 180000,
10
+
11
+ // Hook timeout for setup/teardown
12
+ hookTimeout: 180000,
13
+
14
+ // Run test files sequentially to avoid resource conflicts
15
+ // Each file loads the embedding model which uses significant memory
16
+ fileParallelism: false,
17
+
18
+ // Run tests within a file sequentially
19
+ sequence: {
20
+ concurrent: false
21
+ },
22
+
23
+ // Verbose output
24
+ reporters: ['verbose'],
25
+
26
+ // Isolate tests to prevent memory leaks between test files
27
+ isolate: true
28
+ }
29
+ });