gpt4 book ai didi

unit-testing - AntD 单元测试表渲染

转载 作者:行者123 更新时间:2023-12-05 07:01:19 25 4
gpt4 key购买 nike

如何对AntD Table渲染列进行单元测试?

这是我的代码

const columns = [
{
title: 'Evaluation Form',
dataIndex: 'projectName',
key: 'projectName',
render: (text, record) => `${!_.isNil(text) ? text : '---'} - ${record.employeeName}`,
},
]

<Table
columns={columns}
/>

这是测试结果 enter image description here

最佳答案

render 的返回值应该是一个 React 节点或一个带有 children 属性的对象,它可以是一个字符串或 React 节点。将渲染函数更改为:

const columns = [
{
title: 'Evaluation Form',
dataIndex: 'projectName',
key: 'projectName',
render: (text, record) => ({
children: `${!_.isNil(text) ? text : '---'} - ${record.employeeName}`,
...
})
},
]

关于unit-testing - AntD 单元测试表渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63904641/

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