我在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'
}
});
};
不要担心我的道具价值,这是假的。