如何通过笑话测试ref?

时间:2020-06-12 14:00:47

标签: reactjs react-native jestjs ts-jest

在测试期间,参考FlatList中发生错误。我该如何解决?

enter image description here

1 个答案:

答案 0 :(得分:0)

您尝试执行以下操作:

const wrapper = shallow(<YourComponent />);
wrapper.instance().flatListRef.scrollToIndex = jest.fn();
expect(wrapper.instance().flatListRef.scrollToIndex).toHaveBeenCalled();