()
| 50 | // Mock next/router |
| 51 | jest.mock('next/router', () => ({ |
| 52 | useRouter() { |
| 53 | return { |
| 54 | route: '/', |
| 55 | pathname: '', |
| 56 | query: {}, |
| 57 | asPath: '', |
| 58 | push: jest.fn(), |
| 59 | replace: jest.fn(), |
| 60 | }; |
| 61 | }, |
| 62 | })); |
| 63 | |
| 64 | // Mock next/navigation |
no outgoing calls
no test coverage detected