
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
karma-coverage-istanbul-instrumenter
Advanced tools
Karma preprocessor for instrumenting javascript code for coverage
A karma preprocessor that uses the latest istanbul 1.x APIs to instrument bundled ES5 or native ES6 code for coverage
This plugin instruments javascript code for coverage using the latest istanbul 1.x APIs. Source maps and mapping transpiled/bundled code to get coverage for the original source code is fully supported.
For configuring coverage output format, thresholds and other reporting options, please see karma-coverage-istanbul-reporter.
Unit testing native ES6 code with coverage in Karma and Chrome Headless, no bundling or transpiling: test/es6-native.
Unit testing Typescript code transpiled to ES6 + external source maps with coverage in Karma and Chrome Headless: test/external-sourcemap.
Unit testing Typescript code transpiled to ES6 + inline source maps with coverage in Karma and Chrome Headless: test/inline-sourcemap.
Unit testing ES6 code transpiled to ES5 with coverage in Karma and Chrome Headless, bundled with Rollup, transpiled with Babel: test/rollup.
npm install --save-dev karma-coverage-istanbul-instrumenter
module.exports = function(config) {
config.set({
// ...
preprocessors: {
"/!(*.spec).js": ["karma-coverage-istanbul-instrumenter"]
},
coverageIstanbulInstrumenter: {
esModules: true,
// ...
},
// ...
});
};
The plugin supports all options supported by istanbul-lib-instrument:
{
// Name of global coverage variable.
coverageVariable: '__coverage__',
// Preserve comments in output.
preserveComments: false,
// Generate compact code.
compact: true,
// Set to true to instrument ES6 modules.
esModules: false,
// Set to true to allow `return` statements outside of functions.
autoWrap: false,
// Set to true to produce a source map for the instrumented code.
produceSourceMap: false,
// Set to array of class method names to ignore for coverage.
ignoreClassMethods: [],
// A callback function that is called when a source map URL is found in the original code.
// This function is called with the source file name and the source map URL.
sourceMapUrlCallback: null,
// Turn debugging on.
debug: false,
// Set plugins.
plugins: [
'asyncGenerators',
'dynamicImport',
'objectRestSpread',
'optionalCatchBinding',
'flow',
'jsx'
]
};
MIT
© 2022 Erik Barke, Monounity
FAQs
Karma preprocessor for instrumenting javascript code for coverage
The npm package karma-coverage-istanbul-instrumenter receives a total of 605 weekly downloads. As such, karma-coverage-istanbul-instrumenter popularity was classified as not popular.
We found that karma-coverage-istanbul-instrumenter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.