Skip to content

Commit

Permalink
chore(test): Replace usage of tl/react-hooks to tl/react.
Browse files Browse the repository at this point in the history
  • Loading branch information
oBusk committed Apr 19, 2022
1 parent 77ec250 commit 0865d7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/hooks/useAsyncState.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/hooks/useThrottle.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down

0 comments on commit 0865d7b

Please sign in to comment.