@@ -337,6 +337,52 @@ describe('defineCustomElement', () => {
337
337
await nextTick ( )
338
338
expect ( consumer . shadowRoot ! . innerHTML ) . toBe ( `<div>changed!</div>` )
339
339
} )
340
+
341
+ test ( 'inherited from ancestors' , async ( ) => {
342
+ const fooA = ref ( 'FooA!' )
343
+ const fooB = ref ( 'FooB!' )
344
+ const ProviderA = defineCustomElement ( {
345
+ provide : {
346
+ fooA
347
+ } ,
348
+ render ( ) {
349
+ return h ( 'provider-b' )
350
+ }
351
+ } )
352
+ const ProviderB = defineCustomElement ( {
353
+ provide : {
354
+ fooB
355
+ } ,
356
+ render ( ) {
357
+ return h ( 'my-multi-consumer' )
358
+ }
359
+ } )
360
+
361
+ const Consumer = defineCustomElement ( {
362
+ setup ( ) {
363
+ const fooA = inject < Ref > ( 'fooA' ) !
364
+ const fooB = inject < Ref > ( 'fooB' ) !
365
+ return ( ) => h ( 'div' , `${ fooA . value } ${ fooB . value } ` )
366
+ }
367
+ } )
368
+
369
+ customElements . define ( 'provider-a' , ProviderA )
370
+ customElements . define ( 'provider-b' , ProviderB )
371
+ customElements . define ( 'my-multi-consumer' , Consumer )
372
+ container . innerHTML = `<provider-a><provider-a>`
373
+ const providerA = container . childNodes [ 0 ] as VueElement
374
+ const providerB = providerA . shadowRoot ! . childNodes [ 0 ] as VueElement
375
+ const consumer = providerB . shadowRoot ! . childNodes [ 0 ] as VueElement
376
+
377
+ expect ( consumer . shadowRoot ! . innerHTML ) . toBe ( `<div>FooA! FooB!</div>` )
378
+
379
+ fooA . value = 'changedA!'
380
+ fooB . value = 'changedB!'
381
+ await nextTick ( )
382
+ expect ( consumer . shadowRoot ! . innerHTML ) . toBe (
383
+ `<div>changedA! changedB!</div>`
384
+ )
385
+ } )
340
386
} )
341
387
342
388
describe ( 'styles' , ( ) => {
0 commit comments