我使用业力,酶,柴作为反应项目的测试框架。下面是我在测试用例中使用的代码。我使用redux-mock来模拟商店状态。
const initialState = {
}
const store = mockStore(initialState)
describe('test suite', () => {
it('testcase1', () => {
const wrapper = mount(
<Provider store={store}>
<div>
</div>
</Provider>
)
expect(wrapper.find(<div>)).to.have.length(1)
})
})
当我运行此测试用例时,我收到以下错误:
AssertionError: expected { Object (component, root, ...) } to have a length of 1 but got 0
似乎酶无法找到&#39; div&#39;元件。我在这里错过了吗?我怎样才能让酶起作用?