switch coverage to codecov

This commit is contained in:
JT2M0L3Y
2026-07-03 11:07:20 -07:00
parent 4aadea4611
commit b492d8f62f
6 changed files with 40 additions and 39 deletions
+3 -2
View File
@@ -6,8 +6,9 @@ export default defineConfig({
globals: true, // <-- reduces test file imports
reporters: ['verbose'], // <-- verbose output
coverage: {
exclude: [...configDefaults.exclude, 'build/*', 'tests/*'], // <-- exclude JS build
reporter: ['text-summary'] // <-- report in text-summary
include: ['src/**/*.ts'],
reporter: 'lcov',
reportsDirectory: './coverage'
}
}
})