是否可以使用 react-test-utils 或 react-test-renderer 直接测试反应组件的方法?相当于酶:
const wrapper = shallow(<MyComponent />);
const instance = wrapper.instance();
instance.myMethod();
react-test-utils 或 react-test-renderer 是否有类似的等价物?
是否可以使用 react-test-utils 或 react-test-renderer 直接测试反应组件的方法?相当于酶:
const wrapper = shallow(<MyComponent />);
const instance = wrapper.instance();
instance.myMethod();
react-test-utils 或 react-test-renderer 是否有类似的等价物?