add @vitest/coverage-v8 for test coverage reporting
All checks were successful
Build & Deploy to Staging / Build & Deploy to Staging (push) Successful in 18m27s

This commit is contained in:
OpenClaw Subagent 2026-03-12 14:13:32 +01:00
parent 39fb8e01e7
commit fb68cf5546
3 changed files with 205 additions and 0 deletions

View file

@ -9,5 +9,11 @@ export default defineConfig({
...configDefaults.exclude,
"**/dist/**",
],
coverage: {
provider: "v8",
reporter: ["text", "text-summary"],
include: ["src/**/*.ts"],
exclude: ["src/__tests__/**", "src/**/*.test.ts"],
},
},
});