We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clone项目在本地安装完依赖后,直接运行test报错。
FAIL tests/index.spec.tsx ● #Icestore › #useStore › should useStore be ok. expect(jest.fn()).toHaveBeenCalledTimes(expected) Expected number of calls: 2 Received number of calls: 1 130 | await sleep(10); 131 | > 132 | expect(renderFn).toHaveBeenCalledTimes(2); | ^ 133 | expect(nameValue.textContent).toEqual(newState.name); 134 | }); 135 |
The text was updated successfully, but these errors were encountered:
Maybe related to this issue testing-library/react-testing-library#517
Sorry, something went wrong.
fix: failed test (alibaba/ice/issues/2895)
79e1454
Solved by ice-lab/icestore#34
Merge pull request #34 from lucifer1004/master
7465a1f
temper357
No branches or pull requests
问题描述
clone项目在本地安装完依赖后,直接运行test报错。
错误信息
FAIL tests/index.spec.tsx ● #Icestore › #useStore › should useStore be ok. expect(jest.fn()).toHaveBeenCalledTimes(expected) Expected number of calls: 2 Received number of calls: 1 130 | await sleep(10); 131 | > 132 | expect(renderFn).toHaveBeenCalledTimes(2); | ^ 133 | expect(nameValue.textContent).toEqual(newState.name); 134 | }); 135 |
The text was updated successfully, but these errors were encountered: