用笑话和酶覆盖无操作功能
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用笑话和酶覆盖无操作功能相关的知识,希望对你有一定的参考价值。
答案
为了使Instanbul忽略noop函数,我们可以使用/* istanbul ignore next */
中提到的here。
例如,您可以做类似的事情
const defaultContext = {
activeInput: null,
removeFocus: /* istanbul ignore next */ () => {},
focusInput: /* istanbul ignore next */ () => {},
}
或者您可以定义一个隔离的noop函数并在需要时重用
/* istanbul ignore next */
function noop() {}
const defaultContext = {
activeInput: null,
removeFocus: noop,
focusInput: noop,
}
以上是关于用笑话和酶覆盖无操作功能的主要内容,如果未能解决你的问题,请参考以下文章
使用 Jest 和酶时如何在 React.useEffect 钩子上获得线路覆盖?
开玩笑地模拟 useDispatch 并在功能组件中使用该调度操作来测试参数
如何使用 jest 和酶测试 onClick() 函数和 useState 钩子