$ npm install @vitest/coverage-istanbulVitest coverage provider that instruments code coverage via istanbul.
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