Fitbit/stats-writer-webpack-plugin

View on GitHub
wallaby.js

Summary

Maintainability
A
0 mins
Test Coverage
export default wallaby => {
    return {
        files: [
            'src/**/*.js',
            'test/fixtures/**/*.js'
        ],
        tests: [
            'test/**/*.spec.js'
        ],
        testFramework: 'jasmine',
        env: {
            type: 'node'
        },
        compilers: {
            '**/*.js': wallaby.compilers.babel({
                babelrc: true
            })
        }
    };
};