Skip to content

Commit

Permalink
fix(vitest): fix coverage collection
Browse files Browse the repository at this point in the history
  • Loading branch information
norskeld committed Oct 25, 2022
1 parent 2c5e3a2 commit 253c65f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vitest.config.ts
Expand Up @@ -3,8 +3,10 @@ import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
coverage: {
all: true,
provider: 'istanbul',
reporter: ['text', 'lcov']
reporter: ['text', 'lcov'],
include: ['src/**/*.ts']
}
}
})

0 comments on commit 253c65f

Please sign in to comment.