|
| 1 | +/** |
| 2 | + * @jest-environment jsdom |
| 3 | + */ |
| 4 | +import { |
| 5 | + createRouter, |
| 6 | + createMemoryHistory, |
| 7 | + onBeforeRouteUpdate, |
| 8 | +} from '../../src' |
| 9 | +import { createApp, defineComponent } from 'vue' |
| 10 | + |
| 11 | +const component = { |
| 12 | + template: '<div>Generic</div>', |
| 13 | +} |
| 14 | + |
| 15 | +describe('onBeforeRouteUpdate', () => { |
| 16 | + it('invokes with the component context', async () => { |
| 17 | + expect.assertions(2) |
| 18 | + const spy = jest |
| 19 | + .fn() |
| 20 | + .mockImplementationOnce(function (this: any, to, from, next) { |
| 21 | + expect(typeof this.counter).toBe('number') |
| 22 | + next() |
| 23 | + }) |
| 24 | + const WithLeave = defineComponent({ |
| 25 | + template: `text`, |
| 26 | + // we use data to check if the context is the right one because saving `this` in a variable logs a few warnings |
| 27 | + data: () => ({ counter: 0 }), |
| 28 | + setup() { |
| 29 | + onBeforeRouteUpdate(spy) |
| 30 | + }, |
| 31 | + }) |
| 32 | + |
| 33 | + const router = createRouter({ |
| 34 | + history: createMemoryHistory(), |
| 35 | + routes: [ |
| 36 | + { path: '/', component }, |
| 37 | + { path: '/foo', component: WithLeave as any }, |
| 38 | + ], |
| 39 | + }) |
| 40 | + const app = createApp({ |
| 41 | + template: ` |
| 42 | + <router-view /> |
| 43 | + `, |
| 44 | + }) |
| 45 | + app.use(router) |
| 46 | + const rootEl = document.createElement('div') |
| 47 | + document.body.appendChild(rootEl) |
| 48 | + app.mount(rootEl) |
| 49 | + |
| 50 | + await router.isReady() |
| 51 | + await router.push('/foo') |
| 52 | + await router.push('/foo?q') |
| 53 | + expect(spy).toHaveBeenCalledTimes(1) |
| 54 | + }) |
| 55 | +}) |
0 commit comments