Socket
Book a DemoInstallSign in
Socket

karma-coverage-istanbul-instrumenter

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-coverage-istanbul-instrumenter

Karma preprocessor for instrumenting javascript code for coverage

1.0.4
latest
Source
npmnpm
Version published
Weekly downloads
723
63.57%
Maintainers
1
Weekly downloads
 
Created
Source

karma-coverage-istanbul-instrumenter

Npmjs Version Npmjs Npm Monthly Downloads dependencies Status

A karma preprocessor that uses the latest istanbul 1.x APIs to instrument bundled ES5 or native ES6 code for coverage

About

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.

Examples

  • 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.

Installation

npm install --save-dev karma-coverage-istanbul-instrumenter

Configuration

module.exports = function(config) {
    config.set({

        // ...

        preprocessors: {
            "/!(*.spec).js": ["karma-coverage-istanbul-instrumenter"]
        },

        coverageIstanbulInstrumenter: {
            esModules: true,
            // ... 
        },

        // ...
    });
};

Options

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'
    ]
};

License

MIT

© 2022 Erik Barke, Monounity

Keywords

istanbul

FAQs

Package last updated on 25 Dec 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.