gpt4 book ai didi

javascript - 调用函数作为 Enzyme 中的 prop 传递

转载 作者:行者123 更新时间:2023-12-03 00:13:07 26 4
gpt4 key购买 nike

我的组件看起来像这样

const FooBar = ({
onClose,
}) => {
return (
<div
className='foo'>
<Icon
name='close'

onClick={onClose} />
</div>
)
}

我的测试如下

const mockFn = jest.fn();
const title = 'Title';

it('calls the onClose function', () => {
const component = mount(
<FooBar
title={title}

onClose={mockFn}
/>
);

component.instance().onClose();
expect(mockFn).toBeCalled();
component.unmount();
});

返回

TypeError: Cannot read property 'onClose' of null

如何调用onClose函数?

最佳答案

尝试

component.find(Icon).first().props().onClick();

另外,看看 react-testing-library 它使这种测试变得更容易。

关于javascript - 调用函数作为 Enzyme 中的 prop 传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54633389/

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