UNPKG

react-github-user-stats

Version:
14 lines (10 loc) 331 B
import useGithubStats from "./index"; import { renderHook } from "@testing-library/react-hooks"; // mock timer using jest jest.useFakeTimers(); describe("useGithubStats", () => { it("updates every second", () => { const { result } = renderHook(() => useGithubStats("munafio")); expect(result).toBeDefined(); }); });