51 lines
1.1 KiB
TypeScript
51 lines
1.1 KiB
TypeScript
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', 'html', 'json-summary'],
|
|
reportsDirectory: './coverage/billing',
|
|
include: [
|
|
'src/lib/billing/cost.ts',
|
|
'src/lib/billing/mode.ts',
|
|
'src/lib/billing/task-policy.ts',
|
|
'src/lib/billing/runtime-usage.ts',
|
|
'src/lib/billing/service.ts',
|
|
'src/lib/billing/ledger.ts',
|
|
],
|
|
thresholds: {
|
|
branches: 80,
|
|
functions: 80,
|
|
lines: 80,
|
|
statements: 80,
|
|
},
|
|
},
|
|
},
|
|
})
|