Skip to content

Instantly share code, notes, and snippets.

@levchenkod
Created July 2, 2024 23:07
Show Gist options
  • Save levchenkod/2c6b02aa9ea39e407529a51455080af9 to your computer and use it in GitHub Desktop.
Save levchenkod/2c6b02aa9ea39e407529a51455080af9 to your computer and use it in GitHub Desktop.
Mock next/router with next-router-mock lib
import mockRouter from "next-router-mock";
jest.mock("next/router", () => jest.requireActual("next-router-mock"));
describe("Page useRouter hook", () => {
it("renders", () => {
mockRouter.push("/home?with=query");
//...
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment