feat:Strengthen the testing framework
This commit is contained in:
49
vitest.core-coverage.config.ts
Normal file
49
vitest.core-coverage.config.ts
Normal file
@@ -0,0 +1,49 @@
|
||||
import { defineConfig } from 'vitest/config'
|
||||
import { resolve } from 'node:path'
|
||||
|
||||
export default defineConfig({
|
||||
css: {
|
||||
postcss: {
|
||||
plugins: [],
|
||||
},
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': resolve(__dirname, 'src'),
|
||||
},
|
||||
},
|
||||
test: {
|
||||
environment: 'node',
|
||||
css: false,
|
||||
pool: 'forks',
|
||||
poolOptions: {
|
||||
forks: {
|
||||
minForks: 1,
|
||||
maxForks: 1,
|
||||
},
|
||||
},
|
||||
setupFiles: ['./tests/setup/env.ts'],
|
||||
globalSetup: ['./tests/setup/global-setup.ts'],
|
||||
include: ['**/*.test.ts'],
|
||||
testTimeout: 30_000,
|
||||
hookTimeout: 60_000,
|
||||
coverage: {
|
||||
provider: 'v8',
|
||||
reporter: ['text', 'json-summary'],
|
||||
reportsDirectory: './coverage/core-baseline',
|
||||
include: [
|
||||
'src/app/api/**',
|
||||
'src/lib/task/**',
|
||||
'src/lib/workers/**',
|
||||
'src/lib/media/**',
|
||||
'src/lib/errors/**',
|
||||
],
|
||||
thresholds: {
|
||||
branches: 0,
|
||||
functions: 0,
|
||||
lines: 0,
|
||||
statements: 0,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user