superdesk/superdesk-client-core

View on GitHub
tasks/options/karma.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
    options: {
        configFile: 'karma.conf.js',
        singleRun: true,
        autoWatch: false,
        reporters: ['dots'],
    },
    single: {
        reporters: 'dots',
    },
    watch: {
        singleRun: false,
        autoWatch: true,
        reporters: 'dots',
    },
    unit: {
        coverageReporter: {
            type: 'html',
            dir: 'report/',
        },
    },
    travis: {
        reporters: ['dots'],
    },
    bamboo: {
        browsers: ['PhantomJS'],
        reporters: ['dots', 'junit'],
    },
};