jest 单元测试如何忽略项目中的testjs文件
在Jest中,可以通过配置testPathIgnorePatterns选项来忽略项目中的特定测试文件。
在jest.config.js文件中,添加以下配置:
module.exports = {
// other configurations
testPathIgnorePatterns: [
"/node_modules/",
"<rootDir>/path/to/ignored/test.js"
]
};
在上面的示例中,testPathIgnorePatterns配置了两个忽略模式,/node_modules/用于忽略node_modules目录下的测试文件,<rootDir>/path/to/ignored/test.js用于忽略指定路径下的测试文件。
这样配置后,Jest将不会运行被忽略的测试文件。
原文地址: http://www.cveoy.top/t/topic/h03y 著作权归作者所有。请勿转载和采集!