我有这个组件
const InputWithLabel = ({
id,
value,
type = 'text',
onInputChange,
isFocused,
children,
}) => {...
return(<>
<label htmlFor={id} className="label">
{children}
</label>
...
</>)}
我正在测试:
describe('InputWithLabel',()=>{
const inputWithLabelProps={
id:"search",
value:"React",
isFocused:true,
onInputChange:jest.fn,
children:[]
}
test('check the existence of InputWithLabel',()=>{
render(<InputWithLabel {...inputWithLabelProps}/>);
screen.debug();// This to see the renders of the Element
});
})
我可以给孩子们什么样的价值:[]来做这个测试。我试过用对象数组,但是不起作用。有什么想法吗?
1条答案
按热度按时间flvlnr441#
在我的例子中,这是解决方案,这是组件的调用
测试将为:
请注意
是my组件的子级