我希望这可以工作,但它没有:
const element = shallow(<SomeComponentClass />);
element.is(SomeComponentClass); // === false, why?
我得到了假,虽然我期待它返回真。
使用mount()
而不是shallow()
返回true
为什么?谢谢!
我希望这可以工作,但它没有:
const element = shallow(<SomeComponentClass />);
element.is(SomeComponentClass); // === false, why?
我得到了假,虽然我期待它返回真。
使用mount()
而不是shallow()
返回true
为什么?谢谢!
我为此打开了一个关于酶的问题,看起来很浅不返回组件类,而是呈现的暗淡元素。 https://github.com/airbnb/enzyme/issues/768#issuecomment-272125380
所以虚假是故意的。实际上,Mount 也应该返回 false。