我遇到一个问题,试图了解如何使用笑话。
我有一个不带Redux的应用程序堆栈导航器,其内容如下: 第1页,第2页,第3页
我遇到的问题是,当我为navigate.getParam("name of router', data)
做测试用例时
render() {
const { navigation, label, ...props } = this.props;
const username = navigation.getParam('username', 'user');
return (
错误信息表明getParam is undefined
。有什么想法可以解决这个问题吗?
这是一个测试用例:
describe("Function running with no error", ()=>{
it('redenders the test page correctly', () => {
const tree = renderer.create(<page2 />).toJSON();
})