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