File tree 2 files changed +11
-0
lines changed
examples/app-vitest-full/tests/nuxt
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import App from '~/app.vue'
7
7
import OptionsComponent from '~/components/OptionsComponent.vue'
8
8
import WrapperTests from '~/components/WrapperTests.vue'
9
9
import LinkTests from '~/components/LinkTests.vue'
10
+ import DirectiveComponent from '~/components/DirectiveComponent.vue'
10
11
11
12
import ExportDefaultComponent from '~/components/ExportDefaultComponent.vue'
12
13
import ExportDefineComponent from '~/components/ExportDefineComponent.vue'
@@ -77,6 +78,15 @@ describe('renderSuspended', () => {
77
78
)
78
79
} )
79
80
81
+ it ( 'respects directives registered in nuxt plugins' , async ( ) => {
82
+ const component = await renderSuspended ( DirectiveComponent )
83
+ expect ( component . html ( ) ) . toMatchInlineSnapshot ( `
84
+ "<div id="test-wrapper">
85
+ <div data-directive="true"></div>
86
+ </div>"
87
+ ` )
88
+ } )
89
+
80
90
it ( 'can pass slots to rendered components within nuxt suspense' , async ( ) => {
81
91
const text = 'slot from render suspense'
82
92
await renderSuspended ( OptionsComponent , {
Original file line number Diff line number Diff line change @@ -166,6 +166,7 @@ export async function renderSuspended<T>(
166
166
config : {
167
167
globalProperties : vueApp . config . globalProperties ,
168
168
} ,
169
+ directives : vueApp . _context . directives ,
169
170
provide : vueApp . _context . provides ,
170
171
components : { RouterLink } ,
171
172
} ,
You can’t perform that action at this time.
0 commit comments