我在使用chai-enzyme的 React 组件测试中有以下内容:
const wrapper = mount(<Something />)
expect(wrapper).to.contain(<SomethingElse />) //works
expect(wrapper).to.containMatchingElement(<SomethingElse />) //does not work
并想知道为什么contain
有效但containMatchingElement
无效。