mirror of
https://github.com/langgenius/dify.git
synced 2026-09-02 22:36:15 +08:00
Import the committed KnowledgeFS snapshot dc4072ee302317145612087ce7440851dc329fd0 under knowledge-fs/ without its Git history, local IDE settings, or build artifacts.
19 lines
385 B
TypeScript
19 lines
385 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
exclude: ["src/**/*.test.ts", "src/index.ts"],
|
|
include: ["src/**/*.ts"],
|
|
provider: "v8",
|
|
reporter: ["text", "json-summary"],
|
|
thresholds: {
|
|
branches: 90,
|
|
functions: 90,
|
|
lines: 90,
|
|
statements: 90,
|
|
},
|
|
},
|
|
},
|
|
});
|