有没有办法在使用CoffeeScript编写的单元测试上运行Jest覆盖工具?报道报告总是告诉我100%的报道。
jest --coverage
----------|----------|----------|----------|----------|----------------|
File | % Stmts | % Branch | % Funcs | % Lines |Uncovered Lines |
----------|----------|----------|----------|----------|----------------|
----------|----------|----------|----------|----------|----------------|
All files | 100 | 100 | 100 | 100 | |
----------|----------|----------|----------|----------|----------------|
我已经使用以下Jest预处理器
将CoffeeScript转换为JavaScriptvar coffee = require('coffee-script');
module.exports = {
// CoffeeScript files can be .coffee or .litcoffee
process: function(src, path) {
if (coffee.helpers.isCoffee(path)) {
return coffee.compile(src, {
bare: true,
literate: coffee.helpers.isLiterate(path)
});
}
return src;
}
};