如何禁用Karma Test Runner Sound Bip

时间:2013-11-26 15:09:25

标签: karma-runner

我在karma.conf文件下,我想知道是否有办法禁用这个输出声音bip,当我进行'grunt测试'时它会包含测试错误。

我在Google上搜索过,但我没有发现任何相关信息,包括Karma的网站。

我认为这可能只是我的 Karma.conf 上添加的一个属性,这里我们到目前为止:

module.exports = function (config) {
    'use strict';
    config.set({
        basePath: '../',
        logLevel: config.LOG_WARN,
        frameworks: ['jasmine'],
        files: [
            'empty'
        ],
        exclude: [
            'empty'
        ],
        singleRun: true,
        reportSlowerThan : 500,
        autoWatch: true,
        browsers: ['PhantomJS'],
        reporters: ['dots', 'coverage', 'junit'],
        preprocessors: {
            // source files, that you wanna generate coverage for
            // do not include tests or libraries
            // (these files will be instrumented by Istanbul)
            'src/targets/**/*.js': ['coverage']
        },
        junitReporter: {
            outputFile: 'reports/coverage/test-results.xml',
            suite: 'unit'
        },
        coverageReporter: {
            type: 'html',
            dir : 'reports/coverage'
        }
    });
};

不要担心我的道具价值,这是假的。

0 个答案:

没有答案