chore(coverage): exclude test files in coverage processes (#696)

* Fix coverage

* Remove unusable file

* Revert

* also Add in codecov

* Remove unused ignore path
This commit is contained in:
Dayong Lee 2024-10-09 11:48:02 +09:00 committed by GitHub
parent 78e13adbce
commit 3b93b7badf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -10,4 +10,4 @@ comment:
layout: 'header, reach, diff, flags, components'
ignore:
- '**/*.test-d.*'
- '**/*.spec.ts'

View File

@ -8,7 +8,7 @@ export default defineConfig({
coverage: {
provider: 'istanbul',
include: ['src/**/*'],
exclude: ['src/compat/_internal/**/*'],
exclude: ['src/compat/_internal/**/*', 'src/**/*.spec.ts'],
},
watch: false,
deps: {