我试图生成HTML覆盖率报告,但它不包含我期望的输出。也许我在这里错了,但它应该只显示那些从spec文件中调用的行和方法,对吗?
不知怎的,它没有。
更新
我创建了一个存储库来提供一个工作示例,概述了问题:
https://github.com/gearsdigital/stunning-octo-train
这是我的(测试)项目设置。如果需要,我可以将它推送到GitHub仓库,因为我不知道如何设置JSFiddle来运行此代码。
有一个生成HTML覆盖率报告的过程。此报告显示所涵盖的代码,但由于没有可用的测试,因此显然没有涵盖。
var webpack = require('webpack');
var path = require('path');
// Reference webpack.config.js, don't repeat it!
var webpackConfig = require('./webpack.config.js');
// The entry point from the referenced Webpack configuration has to be
// removed or tests will fail in weird and inscrutable ways.
// Easy enough, just define an empty entry object (null won't work).
webpackConfig.entry = {};
webpackConfig.module = {
preLoaders: [
{
test: /\.js$/,
// files within these directories should be excluded
// for babel processing
exclude: /(node_modules)/,
loaders: ['babel?cacheDirectory']
},
{
test: /\.js$/,
include: /(src\/js)/,
exclude: /(vendor)/,
loaders: ['isparta']
}
]
};
/**
* Karma configuration
* @param config
*/
module.exports = function (config) {
config.set({
browsers: ['PhantomJS'],
coverageReporter: {
dir: 'test-results',
reporters: [
{type: 'text-summary'},
{type: 'html', subdir: 'coverage'}
]
},
files: [
'webpack.test.config.js'
],
frameworks: [
'jasmine'
],
preprocessors: {
'webpack.test.config.js': ['webpack']
},
reporters: ['spec', 'coverage'],
webpack: webpackConfig
});
};
var webpack = require('webpack');
var path = require('path');
module.exports = {
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery"
})
]
};
// make sure the file name regexp matches your test files.
var testsContext = require.context('./tests', true, /\.spec\.js$/);
testsContext.keys().forEach(testsContext);
// make sure the file name regexp matches your test files.
var srcContext = require.context('./src/js', true, /\.js$/);
srcContext.keys().forEach(srcContext);
import {Calculator} from './modules/Calculator';
let c = new Calculator();
c.add(1,2); // 3
export class Calculator {
add(op1, op2) {
return op1 + op2;
}
sub(op1, op2) {
if (typeof op1 !== 'number') {
return false;
}
return op1 - op2;
}
mul(op1, op2) {
return op1 * op2;
}
div(op1, op2) {
return op1 / op2;
}
}
import {Calculator} from '../src/js/modules/Calculator';
describe('Calculator', function () {
it('should return 10', function () {
expect(true).toBe(false);
});
});
我希望add()
被发现,因为它在任何测试中都没有被调用,而是在bootstrap.js
中。
答案 0 :(得分:6)
src/js/bootstrap.js
被加载;这意味着这些行会被执行。
import {Calculator} from './modules/Calculator';
let c = new Calculator();
c.add(1,2); // 3
我猜这个块是罪魁祸首:
{
test: /\.js$/,
include: /(src\/js)/,
exclude: /(vendor)/,
loaders: ['isparta']
}
简短的回答是否定的。
导入模块时,可能会覆盖任何不在闭包/函数/方法中的内容。
// this will get coverage; because it is top-level code outside a function block
var dummy = null;
export class Calculator {
add(op1, op2) {
// this will get coverage only if you call explicitly the function.
return op1 + op2;
}
}
// this will get coverage.
var c = new Calculator();
// and now, Calculator.add will get coverage.
c.add(1,2); // 3
答案 1 :(得分:4)
好吧所以我不熟悉Webpack或Babel,但我强烈怀疑,因为你将所有文件都包含在Karma配置中,所以无论测试中的内容是什么,代码都会被执行。我已经检查了你的GitHub的例子(关于这样做的赞誉,它更容易调试),如果我注释掉cart.js
的第3行和第4行,则覆盖率报告不会显示utilities.js
如'跑'。
长话短说:显然,未封装到函数中的代码通过将文件包含在Karma中来运行。此外,当没有任何测试时(例如,字面上为0 it
),不要相信Karma,在这种特定情况下它是不可靠的。