mirror of
https://gh-proxy.org/https://github.com/softprops/action-gh-release.git
synced 2026-07-15 23:13:02 +08:00
f6b913c3f9
Signed-off-by: Rui Chen <rui@chenrui.dev>
19 lines
379 B
TypeScript
19 lines
379 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
coverage: {
|
|
reporter: ['text', 'json-summary', 'lcov'],
|
|
include: ['src/**/*.ts'],
|
|
thresholds: {
|
|
statements: 88,
|
|
branches: 83,
|
|
functions: 86,
|
|
lines: 88,
|
|
},
|
|
},
|
|
include: ['__tests__/**/*.ts'],
|
|
},
|
|
});
|