我有这个结构
我可以通过这样做找到我的图标并验证不透明度:
const rightIcon = getByTestId('SvgPlusIcon');
expect(rightIcon.parent?.parent?.parent?.parent).toHaveStyle({opacity: pfTheme.opacity.light});
我到处寻找,找不到更好的方法来代替:
rightIcon.parent?.parent?.parent?.parent
有谁知道如何以更优雅的方式到达父元素?
对不起我的英语,不是母语...