test: 暂存代码

This commit is contained in:
电摇小子
2026-08-06 20:29:25 +08:00
parent 307d247660
commit ad4b3a8074
43 changed files with 9978 additions and 512 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
name: 'knowledge-benchmark',
environment: 'node',
include: ['tests/benchmark/**/*.test.ts'],
fileParallelism: false,
testTimeout: 20 * 60 * 1000
}
})