admin管理员组文章数量:1345401
//in my ponent i have
{this.props.auth.isLoadding &&
<p className='text-info positionMessage'>Is registring...</p>
}
//in my test i have
it('should start a new ponent with set props', () => {
const props = {
auth: {
isAuth: false,
isLoadding: false
}
}
const wrapper = shallow(<ScreensCreateAccount {...props}/>)
wrapper.setProps({isLoadding: true})
//here is code for testing if <p>...</p> appeared. how can i do this?
})
my ponent starts with this.props.auth.isLoadding = false
, and when a change it for true, the html too change, adding <p className='text-info positionMessage'>Is registring...</p>
. How can i test it using shallow from enzyme?
//in my ponent i have
{this.props.auth.isLoadding &&
<p className='text-info positionMessage'>Is registring...</p>
}
//in my test i have
it('should start a new ponent with set props', () => {
const props = {
auth: {
isAuth: false,
isLoadding: false
}
}
const wrapper = shallow(<ScreensCreateAccount {...props}/>)
wrapper.setProps({isLoadding: true})
//here is code for testing if <p>...</p> appeared. how can i do this?
})
my ponent starts with this.props.auth.isLoadding = false
, and when a change it for true, the html too change, adding <p className='text-info positionMessage'>Is registring...</p>
. How can i test it using shallow from enzyme?
-
1
Have you seen how
.text()
works in enzyme? airbnb.io/enzyme/docs/api/ShallowWrapper/text.html if necessary, you can use.find()
to locate the element you want to test: airbnb.io/enzyme/docs/api/ReactWrapper/find.html – OliverRadini Commented Jan 29, 2019 at 13:23 -
@OliverRadini , i need something like
wrapper.setProps({isLoadding: true})
expect(wrapper.text()).toEqual("<p className='text-info positionMessage'>Is registring...</p>")
, but this doesn't work – Deborah L. Christinne Commented Jan 29, 2019 at 13:30
1 Answer
Reset to default 8Here is a working example that sticks to your code : https://codesandbox.io/s/r7owz8mykm
In your code you just forgot the auth level in your json for the prop isLoading.
{isLoadding: true}
, instead of {auth: {isLoadding: true} }
But be aware that shallow rendering and enzyme may not be the right tool for testing your React ponent. I used it a bit but now I use react-testing-library : https://github./kentcdodds/react-testing-library and I am definitively happy with that. My tests are now more high level and interact with my ponents like a real user will do. I can refactor my ponent without breaking my tests, with enzyme it is, well, not so easy to write this kind of tests.
I really encourage you to at least read this and make your own opinion.
https://blog.kentcdodds./why-i-never-use-shallow-rendering-c08851a68bb7
If you already have some tests with enzyme no problem, you can use both libraries in the same project.
本文标签: javascriptHow can i test a component with setProps() of enzymeStack Overflow
版权声明:本文标题:javascript - How can i test a component with setProps() of enzyme - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743787007a2538866.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论