Skip to content

Commit fe46519

Browse files
committedJan 28, 2024
test: add example of mocking nuxt useRoute
1 parent e293cea commit fe46519

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<script lang="ts" setup>
22
import { useRoute } from 'vue-router'
3+
import { useRoute as useNuxtRoute } from '#imports'
34
45
const route = useRoute()
6+
const nuxtRoute = useNuxtRoute()
57
</script>
68

79
<template>
8-
<div>Index page, path: {{ route.path }}</div>
10+
<div>Index page, path: {{ route.path }}, {{ nuxtRoute.path }}</div>
911
</template>
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
22

3-
exports[`Index > should render correctly 1`] = `"<div>Index page, path: /123</div>"`;
3+
exports[`Index > should render correctly 1`] = `"<div>Index page, path: /123, /bob</div>"`;

‎examples/app-vitest-full/tests/nuxt/mock-vue-router.spec.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe, expect, it, vi } from 'vitest'
2-
import { mountSuspended } from '@nuxt/test-utils/runtime'
2+
import { mockNuxtImport, mountSuspended } from '@nuxt/test-utils/runtime'
33
import Index from '~/pages/router/route.vue'
44

55
vi.mock('vue-router', () => ({
@@ -10,6 +10,12 @@ vi.mock('vue-router', () => ({
1010
})),
1111
}))
1212

13+
mockNuxtImport('useRoute', () => () => ({
14+
meta: {},
15+
path: '/bob',
16+
query: {},
17+
}))
18+
1319
describe('Index', async () => {
1420
const wrapper = await mountSuspended(Index)
1521

0 commit comments

Comments
 (0)
Please sign in to comment.