gpt4 book ai didi

code-coverage - 如何在 Jest 中忽略代码覆盖率行

转载 作者:行者123 更新时间:2023-12-03 03:31:20 28 4
gpt4 key购买 nike

在 Jest 中,有没有办法忽略测试覆盖率的代码?我尝试使用

/* istanbul ignore next */

但似乎不起作用。

最佳答案

它有效。

(function(global) {
var defineAsGlobal = true;
/* istanbul ignore next */
if(typeof exports === 'object') {
module.exports = lib;
defineAsGlobal = false;
}
/* istanbul ignore next */
if(typeof modules === 'object' && typeof modules.define === 'function') {
modules.define('lib', function(provide) {
provide(lib);
});
defineAsGlobal = false;
}
/* istanbul ignore next */
if(typeof define === 'function') {
define(function(require, exports, module) {
module.exports = lib;
});
defineAsGlobal = false;
}
/* istanbul ignore next */
defineAsGlobal && (global.lib = lib);
})(this);

示例项目https://github.com/ilyar/sandbox/tree/master/jest

关于code-coverage - 如何在 Jest 中忽略代码覆盖率行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38740165/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com