fix: vitest config - coverage lcov

This commit is contained in:
Louis 2025-07-12 20:09:31 +07:00
parent c23c34583d
commit 09a45baa5d
No known key found for this signature in database
GPG Key ID: 44FA9F4D33C37DE2

View File

@ -7,7 +7,11 @@ export default defineConfig({
'./core',
// Web-app package - use its own vitest config
'./web-app'
]
}
'./web-app',
],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html', 'lcov'],
},
},
})