diff --git a/src/lib/hooks/useAsyncState.test.ts b/src/lib/hooks/useAsyncState.test.ts index 0463f8ed..085f969a 100644 --- a/src/lib/hooks/useAsyncState.test.ts +++ b/src/lib/hooks/useAsyncState.test.ts @@ -2,7 +2,7 @@ * @jest-environment jsdom */ -import { act, renderHook } from "@testing-library/react-hooks"; +import { act, renderHook } from "@testing-library/react"; import useAsyncState from "./useAsyncState"; describe("useAsyncState", () => { diff --git a/src/lib/hooks/useThrottle.test.ts b/src/lib/hooks/useThrottle.test.ts index e98cb4b0..37058c4f 100644 --- a/src/lib/hooks/useThrottle.test.ts +++ b/src/lib/hooks/useThrottle.test.ts @@ -2,7 +2,7 @@ * @jest-environment jsdom */ -import { renderHook } from "@testing-library/react-hooks"; +import { renderHook } from "@testing-library/react"; import * as throttle from "../utils/throttle"; import useThrottle from "./useThrottle";