有没有办法从业力覆盖运动员https://github.com/karma-runner/karma-coverage的代码覆盖率报告中排除文件?
答案 0 :(得分:44)
你可以在这里使用几种技术:karma使用minimatch globs作为文件路径,使用可以利用它来排除某些路径。
作为第一个解决方案,我说尝试仅添加文件的路径以使用coverage进行预处理:
// karma.conf.js
module.exports = function(config) {
config.set({
files: [
'src/**/*.js',
'test/**/*.js'
],
// coverage reporter generates the coverage
reporters: ['progress', 'coverage'],
preprocessors: {
// source files, that you wanna generate coverage for
// do not include tests or libraries
// (these files will be instrumented by Istanbul)
'src/**/*.js': ['coverage']
},
// optionally, configure the reporter
coverageReporter: {
type : 'html',
dir : 'coverage/'
}
});
};
上面的一个是karma-coverage中的默认示例,它显示只会对src
文件夹中的那些文件进行预处理。
另一个技巧可能是使用!
运算符排除特定路径:
preprocessors: {
// source files, that you wanna generate coverage for
// do not include tests or libraries
'src/**/!(*spec|*mock).js': ['coverage']
},
上面的内容仅在那些不以spec.js
或mock.js
结尾的Javascript文件上运行。文件夹也可以这样做:
preprocessors: {
// source files, that you wanna generate coverage for
// do not include tests or libraries
'src/**/!(spec|mock)/*.js': ['coverage']
},
请勿处理spec
或mock
文件夹中的任何Javascript文件。
答案 1 :(得分:5)
如果您使用的是karma-esm
或@open-wc/testing-karma
,而karma-esm
则将一组字符串字符串传递给esm.coverageExclude
const { createDefaultConfig } = require('@open-wc/testing-karma');
const merge = require('deepmerge');
/**
* @param {import('@types/karma').Config} config
* @return {import('@types/karma').Config}
*/
module.exports = config => {
config.set(merge(createDefaultConfig(config), {
files: [{ pattern: config.grep ? config.grep : 'src/**/*.test.js', type: 'module' }],
esm: {
nodeResolve: true,
babel: true,
coverageExclude: ['src/*.test.js'],
},
}));
return config;
};