(path: string, query: any)
| 32 | }; |
| 33 | |
| 34 | export const routerToPathWithQuery = async (path: string, query: any) => { |
| 35 | await pushWithAccessCheck({ path: path, query: query }); |
| 36 | }; |
| 37 | |
| 38 | export const jumpToPath = (router: any, path: string) => { |
| 39 | routerToPathWithQuery(path, { uncached: 'true' }); |
no test coverage detected