|
7 | 7 | RouteLocation,
|
8 | 8 | START_LOCATION_NORMALIZED,
|
9 | 9 | } from '../src/types'
|
10 |
| -import { RouterHistory } from '../src/history/common' |
11 | 10 |
|
12 | 11 | const routes: RouteRecord[] = [
|
13 | 12 | { path: '/', component: components.Home, name: 'home' },
|
@@ -56,9 +55,12 @@ const routes: RouteRecord[] = [
|
56 | 55 | },
|
57 | 56 | ]
|
58 | 57 |
|
59 |
| -async function newRouter({ history }: { history?: RouterHistory } = {}) { |
| 58 | +async function newRouter({ |
| 59 | + history, |
| 60 | + ...args |
| 61 | +}: Partial<Parameters<typeof createRouter>[0]> = {}) { |
60 | 62 | history = history || createMemoryHistory()
|
61 |
| - const router = createRouter({ history, routes }) |
| 63 | + const router = createRouter({ history, routes, ...args }) |
62 | 64 | await router.push('/')
|
63 | 65 |
|
64 | 66 | return { history, router }
|
@@ -90,6 +92,20 @@ describe('Router', () => {
|
90 | 92 | )
|
91 | 93 | })
|
92 | 94 |
|
| 95 | + it('can allows the end user to override parseQuery', async () => { |
| 96 | + const parseQuery = jest.fn() |
| 97 | + const { router } = await newRouter({ parseQuery: parseQuery }) |
| 98 | + router.resolve('/foo?bar=baz') |
| 99 | + expect(parseQuery).toHaveBeenCalled() |
| 100 | + }) |
| 101 | + |
| 102 | + it('can allows the end user to stringify the query', async () => { |
| 103 | + const stringifyQuery = jest.fn() |
| 104 | + const { router } = await newRouter({ stringifyQuery: stringifyQuery }) |
| 105 | + router.resolve({ query: { foo: 'bar' } }) |
| 106 | + expect(stringifyQuery).toHaveBeenCalled() |
| 107 | + }) |
| 108 | + |
93 | 109 | it('can do initial navigation to /', async () => {
|
94 | 110 | const router = createRouter({
|
95 | 111 | history: createMemoryHistory(),
|
|
0 commit comments