使用CoffeeScript编写的测试的Jest代码覆盖率

时间:2015-07-24 14:17:51

标签: coffeescript code-coverage jestjs

有没有办法在使用CoffeeScript编写的单元测试上运行Jest覆盖工具?报道报告总是告诉我100%的报道。

jest --coverage

----------|----------|----------|----------|----------|----------------|
File      |  % Stmts | % Branch |  % Funcs |  % Lines |Uncovered Lines |
----------|----------|----------|----------|----------|----------------|
----------|----------|----------|----------|----------|----------------|
All files |      100 |      100 |      100 |      100 |                |
----------|----------|----------|----------|----------|----------------|

我已经使用以下Jest预处理器

将CoffeeScript转换为JavaScript
var 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;
  }
};

0 个答案:

没有答案