4 lines
130 B
TypeScript
4 lines
130 B
TypeScript
|
|
import Router from "next/router";
|
||
|
|
|
||
|
|
export const routerPushMock = jest.spyOn(Router, "push").mockImplementation(async () => true);
|