[tests] seutp coverage and reportes

This commit is contained in:
2024-10-13 21:58:46 +03:00
parent 52227188a5
commit 30aa5decda
3 changed files with 864 additions and 318 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
},
},
})