如何为以下代码段编写单元测试用例

时间:2020-03-09 06:55:59

标签: javascript ts-jest

export { className } from "path";  
export { className1} from "path";  
export { className2 } from "path";
export { className3 } from "path";

此文件仅包含以上几行,如果我们要为这类文件编写单元测试用例,如果是,请建议如何为此编写单元测试用例。

预先感谢

1 个答案:

答案 0 :(得分:1)

无需为仅导出某些内容的文件编写测试。如果您有coverageThreshold,请忽略这些文件

// jest.config.js
module.exports = {
  ...
  collectCoverage: true,
  collectCoverageFrom: [
    'path/to/collect/**',
    '!path/to/ignore/**',
  ],
  coverageThreshold: {
    global: {
      ...
    },
  },
};