export { className } from "path";
export { className1} from "path";
export { className2 } from "path";
export { className3 } from "path";
此文件仅包含以上几行,如果我们要为这类文件编写单元测试用例,如果是,请建议如何为此编写单元测试用例。
预先感谢
答案 0 :(得分:1)
无需为仅导出某些内容的文件编写测试。如果您有coverageThreshold
,请忽略这些文件
// jest.config.js
module.exports = {
...
collectCoverage: true,
collectCoverageFrom: [
'path/to/collect/**',
'!path/to/ignore/**',
],
coverageThreshold: {
global: {
...
},
},
};