Coder Social home page Coder Social logo

isparta-loader's Introduction

isparta instrumenter loader for webpack

npm deps

Instrument Babel code with isparta for subsequent code coverage reporting.

Install

$ npm i -D isparta-loader

Setup

References

Project structure

Let's say you have the following:

โ”œโ”€โ”€ src/
โ”‚ย ย  โ””โ”€โ”€ components/
โ”‚ย ย      โ”œโ”€โ”€ bar/
โ”‚ย ย      โ”‚ย ย  โ””โ”€โ”€ index.js
โ”‚ย ย      โ””โ”€โ”€ foo/
โ”‚ย ย          โ””โ”€โ”€ index.js
โ””โ”€โ”€ test/
    โ””โ”€โ”€ src/
        โ””โ”€โ”€ components/
            โ””โ”€โ”€ foo/
                โ””โ”€โ”€ index.js

To create a code coverage report for all components (even for those for which you have no tests yet) you have to require all the 1) sources and 2) tests. Something like it's described in "alternative usage" of karma-webpack:

test/index.js

// require all `test/components/**/index.js`
const testsContext = require.context('./src/components/', true, /index\.js$/);

testsContext.keys().forEach(testsContext);

// require all `src/components/**/index.js`
const componentsContext = require.context('../src/components/', true, /index\.js$/);

componentsContext.keys().forEach(componentsContext);

This file will be the only entry point for Karma:

karma.conf.js

config.set({
    โ€ฆ
    files: [
        'test/index.js'
    ],
    preprocessors: {
        'test/index.js': 'webpack'
    },
    webpack: {
        // *optional* babel options: isparta will use it as well as babel-loader
        babel: {
            presets: ['es2015', 'stage-0', 'react']
        },
        // *optional* isparta options: istanbul behind isparta will use it
        isparta: {
            embedSource: true,
            noAutoWrap: true,
            // these babel options will be passed only to isparta and not to babel-loader
            babel: {
                presets: ['es2015', 'stage-0', 'react']
            }
        },
        โ€ฆ
        module: {
            preLoaders: [
                // transpile all files except testing sources with babel as usual
                {
                    test: /\.js$/,
                    exclude: [
                        path.resolve('src/components/'),
                        path.resolve('node_modules/')
                    ],
                    loader: 'babel'
                },
                // transpile and instrument only testing sources with isparta
                {
                    test: /\.js$/,
                    include: path.resolve('src/components/'),
                    loader: 'isparta'
                }
            ]
        }
        โ€ฆ
    },
    reporters: [ 'progress', 'coverage' ],
    coverageReporter: {
        type: 'text'
    },
    โ€ฆ
});

License

WTFPL

isparta-loader's People

Contributors

vslinko avatar enjoylife avatar

Watchers

Pablo Estrada avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.