gpt4 book ai didi

javascript - enzyme /ReactJS : How to find specific child component

转载 作者:行者123 更新时间:2023-12-01 02:47:47 25 4
gpt4 key购买 nike

我正在尝试对组件进行 enzyme /笑话单元测试。我需要模拟特定子组件的更改事件(因为有两个子组件)。

const wrapper = shallow(<CreateAccount />)
wrapper.find({ name: 'username' }).simulate('change', { target: { value: 'Username' } })
wrapper.find({ password: 'password' }).simulate('change', { target: { value: 'Password' } })
const state = wrapper.instance().state
expect(state).toEqual({ username: 'Username', password: 'Password' })

但这不是查找两个输入组件的正确方法...

这就是我的组件的 render() 函数的样子:

render () {
return (
<Form onSubmit={this._onSubmit.bind(this)}>
<Input
value={this.state.description}
onChange={this._onChange.bind(this)}
name='username'
type='text'
placeholder='Username'
/>
<Input
value={this.state.url}
onChange={this._onChange.bind(this)}
name='password'
type='password'
placeholder='Password'
/>
<Button type='submit'>
Submit
</Button>
</Form>
)

最佳答案

通常 find() 返回一个数组,因此您必须使用 at(index)first() 来访问特定元素:

http://airbnb.io/enzyme/docs/api/ShallowWrapper/at.html http://airbnb.io/enzyme/docs/api/ShallowWrapper/first.html

在您的情况下,您还可以导入 Input 组件并像这样找到它们:

import Input from 'input-component-path'

...
wrapper.find(Input).at(0).simulate('change', { target: { value: 'Username' } })
wrapper.find(Input).at(1).simulate('change', { target: { value: 'Password' } })

关于javascript - enzyme /ReactJS : How to find specific child component,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47157104/

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