我试着编写一个测试propType实际类型的jest测试,而不是传入的值的类型。有人可以帮忙吗?
这是我到目前为止所做的,但这只是测试输入类型,而不是组件代码中的实际类型......
describe('PropTypes should be correct type', () => {
it('should have correct proptype types', () => {
const wrapper = shallow(<SimpleList />).instance()
expect(typeof wrapper.props.data).not.toBe(Array)
expect(typeof wrapper.props.style).not.toBe(Object)
})
})
由于