add coverage reporting + improve test coverage for undertested files
Some checks failed
Build & Deploy to Staging / Build & Deploy to Staging (push) Failing after 2m10s

This commit is contained in:
OpenClaw Subagent 2026-03-12 14:09:54 +01:00
parent 55172856b1
commit 0a17e27fcd
6 changed files with 1311 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'],
},
},
});