【发布时间】:2020-08-15 15:16:57
【问题描述】:
我有一个带有表单的反应组件。如果表单使用正确的数据提交,我想进行单元测试(使用 jest 和 RTL)。这是我的组件和单元测试方法:
组件:
class AddDeviceModal extends Component {
handleOnSave(event) {
const { deviceName } = event.target;
const formData = {
deviceName: deviceName.value,
};
this.props.onSave(formData);
}
render() {
return (
<Form onSubmit={this.handleOnSave}>
<Form.Label>Device Name</Form.Label>
<Form.Control name="deviceName" placeholder="Device Name" required />
<Button type="submit">Save Device</Button>
</Form>
);
}
}
单元测试:
it("Test form submit and validation", () => {
const handleSave = jest.fn();
const props = {
onSave: handleSave,
};
render(<AddDeviceModal {...props} />);
const deviceNameInput = screen.getByPlaceholderText(/device name/i);
fireEvent.change(deviceNameInput, { target: { value: "AP VII C2230" } });
fireEvent.click(getByText(/save device/i));
});
但是,在handleOnSave() 中,我收到错误,因为deviceName 是undefined。由于某种原因,它无法从event.target 获取文本框值。我在上面的代码中做错了吗?需要帮助来解决此问题。
【问题讨论】:
标签: reactjs unit-testing jestjs react-testing-library