如何使用React测试库测试Custom Hook

时间:2019-03-29 17:32:39

标签: javascript reactjs unit-testing react-hooks react-hooks-testing-library

我尝试使用react-hooks-testing-library,但似乎没有如何处理使用useContext的钩子。

import React,{useContext} from 'react'
import {AuthContextData} from '../../AuthContext/AuthContext'
const useAuthContext = () => {
    const {authState} = useContext(AuthContextData) 
    const {isAuth,token,userId,userData} = authState
    return {isAuth,token,userId,userData}
  }
  export default useAuthContext

2 个答案:

答案 0 :(得分:1)

您必须将挂钩包装在上下文提供程序中:

let authContext
renderHook(() => (authContext = useAuthContext()), {
  wrapper: ({ children }) => (
    <AuthContextData.Provider value={/* Your value */}>
      {children}
    <AuthContextData.Provider>
  )
})

答案 1 :(得分:0)

比方说,您有一个组件,您在其中调用useContext(context)挂钩以获取应为false或true的键isLoading。

如果要在组件中测试useContext,可以按以下方式对其进行测试:

const context = jest.spyOn(React, 'useContext');

如果同一文件中的每个测试都需要具有不同的上下文值,那么在您的测试内部,您可以像这样模拟实现:

context.mockImplementationOnce(() => {
    return { isLoading: false };
  });

或在测试之外使所有测试具有相同的上下文:

context.mockImplementation(() => {
    return { isLoading: false };
  });

希望有帮助。