如何在 Jest 单元测试中模拟 React hook 的返回值

发布于 2025-01-10 21:40:50 字数 539 浏览 0 评论 0原文

我有一个自定义挂钩 useAuth0。我需要模拟钩子返回的特定函数(logout)并保留其余函数的真实功能。这种情况有解决办法吗?

我试过:

jest.spyOn(useAuth0(), 'logout') // invalid hook call
jest.mock('lib/hooks/useAuth0', () => () => ({
  ...jest.requireActual('lib/hooks/useAuth0'),
  logout: jest.fn()
})) // mocking the module instead of the returned value

expect(useAuth0().logout).toHaveBeenCalled() // fails - logout not called

I have a custom hook useAuth0. I need to mock a specific function (logout) returned by the hook and keep the real funcionality of the rest. Is there a solution for this case?

I tried:

jest.spyOn(useAuth0(), 'logout') // invalid hook call
jest.mock('lib/hooks/useAuth0', () => () => ({
  ...jest.requireActual('lib/hooks/useAuth0'),
  logout: jest.fn()
})) // mocking the module instead of the returned value

expect(useAuth0().logout).toHaveBeenCalled() // fails - logout not called

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文