mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
22 lines
710 B
TypeScript
22 lines
710 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
import webConfig from './vitest.web.config.ts'
|
|
import { vitestExecArgv } from './vitest.shared.ts'
|
|
|
|
// Manual high-cardinality diagnostics stay outside every default Vitest
|
|
// inventory and therefore outside CI's executed test lanes.
|
|
export default defineConfig({
|
|
...webConfig,
|
|
test: {
|
|
...webConfig.test,
|
|
// Memory diagnostics use forced-GC baselines only in this manual inventory.
|
|
execArgv: [...vitestExecArgv, '--expose-gc'],
|
|
include: [
|
|
'apps/web/tests/**/*.perf.ts',
|
|
'packages/api/session-controller/tests/**/*.perf.client.ts',
|
|
],
|
|
disableConsoleIntercept: true,
|
|
hookTimeout: 180_000,
|
|
testTimeout: 600_000,
|
|
},
|
|
})
|