@vitest/coverage-istanbul
Version:
Istanbul coverage provider for Vitest
31 lines (21 loc) • 782 B
Markdown
# @vitest/coverage-istanbul
[](https://npmx.dev/package/@vitest/coverage-istanbul)
Vitest coverage provider that instruments code coverage via [istanbul](https://istanbul.js.org/).
## Installation
After installing the package, specify `istanbul` in the `coverage.provider` field of your Vitest configuration:
```ts
// vitest.config.ts
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
coverage: {
provider: 'istanbul',
},
},
})
```
Then run Vitest with coverage:
```sh
npx vitest --coverage
```
[GitHub](https://github.com/vitest-dev/vitest/tree/main/packages/coverage-istanbul) | [Documentation](https://vitest.dev/guide/coverage)