* fix logs previewer and msw * refactor api mocking for better dx * update readme * comment out error handler for vitest * rm unnecessary tests * fix custom render nuqs type * add logs search test * rm unnecessary import * update readme with customRender and customRednerHook * rm unnecessary api handler * Move the NODE_ENV to the studio build command in turbo.json. * Update apps/studio/tests/README.md Co-authored-by: Joshen Lim <joshenlimek@gmail.com> * add cursor rule --------- Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com> Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
12 lines
307 B
TypeScript
12 lines
307 B
TypeScript
import _routerMock from 'next-router-mock'
|
|
import { createDynamicRouteParser } from 'next-router-mock/dynamic-routes'
|
|
|
|
export const routerMock = _routerMock
|
|
|
|
routerMock.useParser(
|
|
createDynamicRouteParser([
|
|
// These paths should match those found in the `/pages` folder:
|
|
'/projects/[ref]',
|
|
])
|
|
)
|