最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to find count of a div containing specific value in React, Jest and Enzyme - Stack Overflow

programmeradmin1浏览0评论

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 badges
Add a ment  | 

1 Answer 1

Reset to default 7

you can write your selector to match all of the divs 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

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论