mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
4d48791f3c
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
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.*"],
|
|
},
|
|
},
|
|
});
|