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

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