Skip to content

Commit a4ec3f8

Browse files
committedDec 5, 2023
test: add failing test for exposed methods on components within suspense
1 parent 33651af commit a4ec3f8

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed
 

‎examples/app-vitest-full/components/WrapperTests.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ function testExpose () {
1111
const modelValue = defineModel({ default: false })
1212
1313
defineExpose({
14-
testExpose
14+
testExpose,
15+
someRef: ref('thing')
1516
})
1617
</script>
1718

‎examples/app-vitest-full/tests/nuxt/index.spec.ts

+7
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,13 @@ describe('test utils', () => {
144144
expect(component.emitted()).toHaveProperty('update:modelValue')
145145
})
146146

147+
// TODO: fix this failing test
148+
it.todo('can access exposed methods/refs from components mounted within nuxt suspense', async () => {
149+
const component = await mountSuspended(WrapperTests)
150+
expect(component.vm.testExpose?.()).toBe('thing')
151+
expect(component.vm.someRef).toBe('thing')
152+
})
153+
147154
it('can mock fetch requests', async () => {
148155
registerEndpoint('https://jsonplaceholder.typicode.com/todos/1', () => ({
149156
title: 'title from mocked api',

0 commit comments

Comments
 (0)
Please sign in to comment.