Files
LingvAI/mocks/next.ts

4 lines
130 B
TypeScript
Raw Normal View History

import Router from "next/router";
export const routerPushMock = jest.spyOn(Router, "push").mockImplementation(async () => true);