mirror of https://github.com/langgenius/dify.git
15 lines
326 B
TypeScript
15 lines
326 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "node",
|
|
include: ["**/*.test.js"],
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["text", "text-summary"],
|
|
include: ["src/**/*.ts"],
|
|
exclude: ["src/**/*.test.*", "src/**/*.spec.*"],
|
|
},
|
|
},
|
|
});
|