如果alt
的{{1}}属性不存在或为空,您如何编写失败的测试?感觉应该很简单,但我无法做到这一点。
要测试的无状态组件(例如,我简化了它):
img
这是我尝试过的,但测试没有通过,尽管它应该。
const FeaturedProject = () => (
<div className="feat-images">
<img
alt="Meaningful text"
src="./path/to/image"
/>
</div>
)
我会感激任何建议。