标签: jestjs
我对此一无所知。据我所知jest.mock('react')将允许我模拟useState等。但是后来我得到了mockImplementation does not exist on useState的错误。在尝试了各种方法之后,我终于遇到spyOn,它使我能够模拟自己的函数。
jest.mock('react')
useState
mockImplementation does not exist on useState
spyOn
上次我无法模拟事物之前,我曾遇到过这个问题,只是通过避免模拟来解决它,但是有些根本性的东西我很想不到,开玩笑的文档没有告诉我或者我错过了。 / p>