我有一个本机反应应用程序,我使用Jest进行单元测试。
为了说明我的要求,这是我的组件的简化版本:
class GuidePicker extends Component {
constructor(props) {
super(props);
this.name = '';
}
handleSubmit() {
this.props.onSubmit(this.name);
}
...
}
有没有办法在测试期间设置this.name
的值?