gpt4 book ai didi

unit-testing - 如何测试组件是否包含字符串?

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

我正在尝试开个 Jest 。这是我的测试:

test('whether contains className', () => {

let list = [
{
id: 12,
name: 'two',
completed: true
}
];

const wrapper = shallow(
<Todos todos={list}>
</Todos>
);

expect(wrap).toMatch(/strikethrough/);
});

如何检查组件内部是否包含(子)字符串?

最佳答案

您需要使用 .text() 获取当前渲染树的渲染文本方法。

expect(wrapper.text()).toMatch(/strikethrough/)

关于unit-testing - 如何测试组件是否包含字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44620633/

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