babel-plugin-istanbul
babel-plugin-istanbul copied to clipboard
A babel plugin that adds istanbul instrumentation to ES6 code
can it be an relative path?
Is it unexpected that this plugin appears to be ignoring `import` and `export` statements (in terms of statement and line counts)? Maybe I have a config issue, but when I...
I'm not sure if this is a bug with babel-plugin-istanbul (if it's best to post there just let me know), nyc or just a misconfiguration issue I've missed, but when...
**Description** When using `babel-plugin-instanbul` for a Vue 3 app that is using script setup, there is a flood of transpilation errors reading `don't know how to turn this value into...
Lets say you load a file ```javascript import('./path/to/files.js') ``` it doesn't seem to instrument the dynamically loaded file `./path/to/files.js' is this a known issue or am i making some kind...
Hi, Apologies If I am lacking any understanding. I instrumented our micro-frontend code. But when I am testing it in the shell layer, I am getting error that the the...
I can't figure any combination of options that will make this work with vue-loader. What happens is that the `` of a Vue component is instrumented just fine (it is...
@babel/core recently made a change where the sourcemap is no longer a plain js object, but instead is a class SourceMap. This breaks when the coverage data gets passed into...
Imports in my react native project are showing up in lcov reports and SonarQube as uncovered lines **babel.config.js** ``` module.exports = { presets: [ "module:metro-react-native-babel-preset" ], plugins: [ "@babel/plugin-proposal-object-rest-spread", ["@babel/plugin-proposal-decorators",...
Hello! I am trying to use the plugin with [this](https://github.com/software-mansion/react-native-reanimated) lib for animations in react native. The thing is that ```babel-plugin-istanbul``` works alone but not in sync with the animated...