coverage-istanbul-loader icon indicating copy to clipboard operation
coverage-istanbul-loader copied to clipboard

Istanbul code coverage loader for Webpack

Results 12 coverage-istanbul-loader issues
Sort by recently updated
recently updated
newest added

Everything else is covered and working perfectly, however I've noticed that a custom React hook using two `useCallback`s has both dependency arrays uncovered. The function containing the calls is being...

Hi, I'm using `coverage-istanbul-loader` + `karma-coverage-istanbul-reporter` in a `webpack` + `typescript` + `karma` setup for tests (no Babel). All is working fine and coverage calculation is accurate. Thanks a lot...

Hello, I'm facing an issue where my coverage report is not properly reflecting the actual bundle. Code which is omitted thanks to tree shaking/minification is showing up as uncovered. I'm...

There is a testing extension for Quasar Framework that introduces code-coverage support for Cypress e2e testing: [link](https://github.com/quasarframework/quasar-testing/tree/dev/packages/e2e-cypress) I created a Pull Request for introducing Webpack code coverage support for this...

As described in this bug report on the Angular repo, when testing with code-coverage `ng test --code-coverage`, Devtools do not match the right files (for all non-spec files). So I...

Hi, I stumbled upon this issue while trying to instrument code previously compiled with svelte. The resulting source-map was an instance of `SourceMap`, not a plain object. This led me...

I'm transpiling my react app with `babel-loader`. How do I set up `coverage-istanbul-loader` to play nicely with `babel`?

question

Seeing [issues of istanbul-instrument-loader](https://github.com/webpack-contrib/istanbul-instrumenter-loader/issues/73), I changed my depencies just got blank file: ![image](https://user-images.githubusercontent.com/15179343/72328993-ee848500-36ee-11ea-92a6-047135cb0572.png) Here if my config: karam.conf.js, use 'coverage-istanbul' reporter webpack: { mode: 'development', devtool: "inline-source-map", module: { rules:...