Fix coverage config to include assets/app.js

- Change vitest coverage include from assets/modules/**/*.js to assets/**/*.js

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Serreau Jovann
2026-03-19 09:13:38 +01:00
parent 3c0cac1074
commit b5020eae66

View File

@@ -6,7 +6,7 @@ export default defineConfig({
include: ['tests/js/**/*.test.js'],
coverage: {
provider: 'v8',
include: ['assets/modules/**/*.js'],
include: ['assets/**/*.js'],
reporter: ['text', 'lcov'],
},
},