Fix missing lcov test reporter

This commit is contained in:
Bill Thornton 2024-03-19 02:13:06 -04:00
parent 2f5d3759b4
commit 06585dc8a4

View File

@ -8,7 +8,8 @@ export default defineConfig({
environment: 'node',
coverage: {
include: ['src'],
exclude: ['**/__helpers__/**', '**/generated-client/**']
exclude: ['**/__helpers__/**', '**/generated-client/**'],
reporter: [ 'text', 'html', 'lcov', 'json' ]
}
}
});