Merge pull request #5759 from menloresearch/fix/test-coverage-upload-lcov

fix: vitest config - coverage lcov
This commit is contained in:
Louis 2025-07-12 20:14:42 +07:00 committed by GitHub
commit 191537884e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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