diff --git a/vitest.config.ts b/vitest.config.ts index 673712e6..d3e6228b 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -10,11 +10,15 @@ export default defineConfig({ environment: 'jsdom', coverage: { provider: 'v8', + all: false, + clean: true, thresholds: { - branches: 60, - functions: 60, - lines: 60, - statements: 60 + 'packages/component/**/src/*.{ts,vue}': { + branches: 60, + functions: 60, + lines: 60, + statements: 60 + } } } }