Skip to content

Commit e293cea

Browse files
committedJan 28, 2024
test: add example of mocking vue-router
1 parent b90c61e commit e293cea

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<script lang="ts" setup>
2+
import { useRoute } from 'vue-router'
3+
4+
const route = useRoute()
5+
</script>
6+
7+
<template>
8+
<div>Index page, path: {{ route.path }}</div>
9+
</template>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2+
3+
exports[`Index > should render correctly 1`] = `"<div>Index page, path: /123</div>"`;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { describe, expect, it, vi } from 'vitest'
2+
import { mountSuspended } from '@nuxt/test-utils/runtime'
3+
import Index from '~/pages/router/route.vue'
4+
5+
vi.mock('vue-router', () => ({
6+
useRoute: vi.fn(() => ({
7+
meta: {},
8+
path: '/123',
9+
query: {},
10+
})),
11+
}))
12+
13+
describe('Index', async () => {
14+
const wrapper = await mountSuspended(Index)
15+
16+
it('should render correctly', () => {
17+
expect(wrapper.html()).toMatchSnapshot()
18+
})
19+
})

0 commit comments

Comments
 (0)
Please sign in to comment.