mirror of
https://github.com/langgenius/dify.git
synced 2026-09-04 16:07:08 +08:00
19 lines
369 B
TypeScript
19 lines
369 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
exclude: ["src/**/*.test.ts"],
|
|
include: ["src/**/*.ts"],
|
|
provider: "v8",
|
|
reporter: ["text", "json-summary"],
|
|
thresholds: {
|
|
branches: 90,
|
|
functions: 90,
|
|
lines: 90,
|
|
statements: 90,
|
|
},
|
|
},
|
|
},
|
|
});
|