Files
moeka-project/apps/server/vitest.config.ts
T
eabec9a64f feat(stage-ui-mmd): add MMD support (#1997)
---------

Co-authored-by: nyueki <nyuek.i@proton.me>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Neko Ayaka <neko@ayaka.moe>
Co-authored-by-agent: Unknown
2026-07-20 16:13:55 +08:00

29 lines
500 B
TypeScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'node',
fileParallelism: false,
globals: true,
hookTimeout: 60_000,
maxWorkers: 1,
coverage: {
provider: 'v8',
include: [
'src/**/*.ts',
],
reporter: [
'text',
'json',
'html',
],
thresholds: {
lines: 100,
functions: 100,
branches: 100,
statements: 100,
},
},
},
})