gpt4 book ai didi

reactjs - React 测试库 - 检查空 div 是否存在

转载 作者:行者123 更新时间:2023-12-03 13:23:04 25 4
gpt4 key购买 nike

我正在测试一个组件,其中 if ItemLength = 1 , render返回null .

const { container, debug } = render(<MyComp ItemLength={1} />);

当我打电话debug()时在我的测试中,它显示 <div /> 。如何检查组件在我的测试中返回空 div?

最佳答案

更新

使用toBeEmptyDOMElement由于 toBeEmtpy 已被弃用。

<小时/>

您可以使用jest-dom's toBeEmpty :

const { container } = render(<MyComp ItemLength={1} />)
expect(container.firstChild).toBeEmpty()

关于reactjs - React 测试库 - 检查空 div 是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56267336/

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