admin管理员组文章数量:1346317
I am looking for a solution using React, Jest and Enzyme. I am a newbie to these technologies.
I could get a few simple tests to run. Now here is what I want to test:
<div className="trow">
<div className="tcolid" >101</div>
<div className="tcolname">Joe</div>
<div className="tcolgender">M</div>
</div>
<div className="trow">
<div className="tcolid" >102</div>
<div className="tcolname">Abc</div>
<div className="tcolgender">F</div>
</div>
<div className="trow">
<div className="tcolid" >103</div>
<div className="tcolname">Xyz</div>
<div className="tcolgender">F</div>
</div>
...
...
My React ponent consumes data from a rest api. The API can return multiple records male and/or female. My requirement is to ensure only a single male employee to be rendered in UI. I have that achieved - not a problem.
When I am writing tests using Jest and Enzyme I want to check that when I render I only render a single html element having a value 'M'.
Here is what I have tried - Jest / Enzyme does not like it.
expect (wrapper.find("div.tcolgender").text()).toEqual("M").toHaveLength(1);
This does not work. I looked at the Enzyme API - dont find any 'count' or similar such method. Note - this is a 'full' render and not a 'shallow' render.
I am looking for a solution using React, Jest and Enzyme. I am a newbie to these technologies.
I could get a few simple tests to run. Now here is what I want to test:
<div className="trow">
<div className="tcolid" >101</div>
<div className="tcolname">Joe</div>
<div className="tcolgender">M</div>
</div>
<div className="trow">
<div className="tcolid" >102</div>
<div className="tcolname">Abc</div>
<div className="tcolgender">F</div>
</div>
<div className="trow">
<div className="tcolid" >103</div>
<div className="tcolname">Xyz</div>
<div className="tcolgender">F</div>
</div>
...
...
My React ponent consumes data from a rest api. The API can return multiple records male and/or female. My requirement is to ensure only a single male employee to be rendered in UI. I have that achieved - not a problem.
When I am writing tests using Jest and Enzyme I want to check that when I render I only render a single html element having a value 'M'.
Here is what I have tried - Jest / Enzyme does not like it.
expect (wrapper.find("div.tcolgender").text()).toEqual("M").toHaveLength(1);
This does not work. I looked at the Enzyme API - dont find any 'count' or similar such method. Note - this is a 'full' render and not a 'shallow' render.
Share Improve this question edited Oct 20, 2019 at 20:24 halfer 20.4k19 gold badges109 silver badges202 bronze badges asked Oct 20, 2019 at 1:47 satish marathesatish marathe 1,1436 gold badges20 silver badges39 bronze badges1 Answer
Reset to default 7you can write your selector to match all of the div
s with M
contents
const children = wrapper.find('div.tcolgender[children="M"]')
and assert the children will have length of one
expect(children).toHaveLength(1);
working example
本文标签:
版权声明:本文标题:javascript - How to find count of a div containing specific value in React, Jest and Enzyme - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743825671a2545592.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论