@vitest/coverage-istanbul
v4.1.4
Published
Istanbul coverage provider for Vitest
Readme
@vitest/coverage-istanbul
Vitest coverage provider that instruments code coverage via istanbul.
Installation
After installing the package, specify istanbul in the coverage.provider field of your Vitest configuration:
// vitest.config.ts
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
coverage: {
provider: 'istanbul',
},
},
})Then run Vitest with coverage:
npx vitest --coverage